Ram Search/Watch - refresh in UpdateValues with RowCount instead of Invalidate() now that RowCount has optimized redraw logic

This commit is contained in:
adelikat 2019-12-07 10:08:52 -06:00
parent 7a66cddf03
commit f3b49648cc
2 changed files with 2 additions and 2 deletions

View File

@ -296,7 +296,7 @@ namespace BizHawk.Client.EmuHawk
}
_forcePreviewClear = false;
WatchListView.Invalidate();
WatchListView.RowCount = _searches.Count;
}
}

View File

@ -266,7 +266,7 @@ namespace BizHawk.Client.EmuHawk
return;
}
WatchListView.Invalidate();
WatchListView.RowCount = _watches.Count;
}
}