fix inputroll vertical scrollbar logic

This commit is contained in:
adelikat 2019-10-18 20:02:58 -05:00
parent a51bca38f0
commit 427f51f407
1 changed files with 1 additions and 2 deletions

View File

@ -1613,8 +1613,7 @@ namespace BizHawk.Client.EmuHawk
}
else
{
//NeedsVScrollbar = RowCount > 1;
NeedsVScrollbar = false;
NeedsVScrollbar = RowCount > 1;
NeedsHScrollbar = TotalColWidth.HasValue && TotalColWidth.Value - DrawWidth + 1 > 0;
}