Hex editor - better scrollbar logic for really small domains that don't need a scrollbar

This commit is contained in:
adelikat 2013-12-21 20:06:52 +00:00
parent 7ddfc9e013
commit 1e5ff72519
1 changed files with 5 additions and 0 deletions

View File

@ -865,6 +865,11 @@ namespace BizHawk.Client.EmuHawk
_rowsVisible = (MemoryViewerBox.Height - (fontHeight * 2) - (fontHeight / 2)) / fontHeight;
var totalRows = _domain.Size / 16;
if (totalRows < _rowsVisible)
{
_rowsVisible = totalRows;
}
HexScrollBar.Maximum = totalRows - 1;
HexScrollBar.LargeChange = _rowsVisible;
HexScrollBar.Visible = totalRows > _rowsVisible;