Display pixclock to long?

This commit is contained in:
Matt Nadareski
2020-09-04 10:50:08 -07:00
parent de656f003a
commit 319913a288
4 changed files with 18 additions and 9 deletions

View File

@@ -202,7 +202,7 @@ namespace SabreTools.Library.Filtering
public FilterItem<long?> DatItem_Width { get; private set; } = new FilterItem<long?>() { Positive = null, Negative = null, Neutral = null };
public FilterItem<long?> DatItem_Height { get; private set; } = new FilterItem<long?>() { Positive = null, Negative = null, Neutral = null };
public FilterItem<string> DatItem_Refresh { get; private set; } = new FilterItem<string>();
public FilterItem<string> DatItem_PixClock { get; private set; } = new FilterItem<string>();
public FilterItem<long?> DatItem_PixClock { get; private set; } = new FilterItem<long?>() { Positive = null, Negative = null, Neutral = null };
public FilterItem<string> DatItem_HTotal { get; private set; } = new FilterItem<string>();
public FilterItem<string> DatItem_HBEnd { get; private set; } = new FilterItem<string>();
public FilterItem<string> DatItem_HBStart { get; private set; } = new FilterItem<string>();
@@ -859,7 +859,7 @@ namespace SabreTools.Library.Filtering
break;
case Field.DatItem_PixClock:
SetStringFilter(DatItem_PixClock, value, negate);
SetOptionalLongFilter(DatItem_PixClock, value, negate);
break;
case Field.DatItem_HTotal: