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:
parent
0245888419
commit
4386159b90
|
@ -265,7 +265,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
bool fullRefresh = false;
|
bool fullRefresh = false;
|
||||||
if (_rowCount != value)
|
if (_rowCount != value)
|
||||||
{
|
{
|
||||||
if (value < _rowCount && IsVisible(value))
|
if ((value < _rowCount && IsVisible(value)) || HorizontalOrientation)
|
||||||
{
|
{
|
||||||
fullRefresh = true;
|
fullRefresh = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue