Tastudio - when drawing auto-held column background, take horizontal scrollbar into account

This commit is contained in:
adelikat 2015-07-18 10:47:20 -04:00
parent ebe23ada64
commit bc553605ac
1 changed files with 1 additions and 1 deletions

View File

@ -1085,7 +1085,7 @@ namespace BizHawk.Client.EmuHawk
}
else
{
Gdi.FillRectangle(column.Left.Value + 1, 1, column.Width.Value - 1, ColumnHeight - 1);
Gdi.FillRectangle(column.Left.Value + 1 - HBar.Value, 1, column.Width.Value - 1, ColumnHeight - 1);
}
}