i guess you have to use ItemCount and not VirtualListSize. oops!
This commit is contained in:
parent
022c4be0c8
commit
df48afbc46
|
@ -250,7 +250,7 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
private void DisplaySearchList()
|
private void DisplaySearchList()
|
||||||
{
|
{
|
||||||
SearchListView.VirtualListSize = searchList.Count;
|
SearchListView.ItemCount = searchList.Count;
|
||||||
SetTotal();
|
SetTotal();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -529,7 +529,7 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
public void DisplayWatchList()
|
public void DisplayWatchList()
|
||||||
{
|
{
|
||||||
WatchListView.VirtualListSize = watchList.Count;
|
WatchListView.ItemCount = watchList.Count;
|
||||||
/*
|
/*
|
||||||
WatchListView.Items.Clear();
|
WatchListView.Items.Clear();
|
||||||
for (int x = 0; x < watchList.Count; x++)
|
for (int x = 0; x < watchList.Count; x++)
|
||||||
|
|
Loading…
Reference in New Issue