Ram Search/Watch - refresh in UpdateValues with RowCount instead of Invalidate() now that RowCount has optimized redraw logic
This commit is contained in:
parent
7a66cddf03
commit
f3b49648cc
|
@ -296,7 +296,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
|
||||
_forcePreviewClear = false;
|
||||
WatchListView.Invalidate();
|
||||
WatchListView.RowCount = _searches.Count;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -266,7 +266,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
return;
|
||||
}
|
||||
|
||||
WatchListView.Invalidate();
|
||||
WatchListView.RowCount = _watches.Count;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue