InputRoll: Fix columns headers not immediately redrawing when a rotatable column (horizontal orientation) changes size due to the row count changing.

This commit is contained in:
J.D. Purcell 2020-02-17 23:02:02 -05:00
parent 0245888419
commit 4386159b90
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ namespace BizHawk.Client.EmuHawk
bool fullRefresh = false;
if (_rowCount != value)
{
if (value < _rowCount && IsVisible(value))
if ((value < _rowCount && IsVisible(value)) || HorizontalOrientation)
{
fullRefresh = true;
}