Increase maximum allowed size of test virtual grid in the sample

This allows to see that the grid is currently not redrawn correctly
under MSW when it has more than ~6,000,000 rows due to overflowing the
device space span of 2^27.
This commit is contained in:
Vadim Zeitlin
2022-04-29 15:50:56 +01:00
parent d64ba81378
commit c6e45280d7

View File

@@ -1932,7 +1932,7 @@ void GridFrame::OnVTable(wxCommandEvent& )
"Size: ",
"wxGridDemo question",
s_sizeGrid,
0, 32000, this);
0, 10000000, this);
if ( s_sizeGrid != -1 )
{