InputRoll: Fix bottom grid line in horizontal orientation if last column is rotatable.

This commit is contained in:
J.D. Purcell 2020-02-17 22:03:38 -05:00
parent 606c3bf1c2
commit 0245888419
1 changed files with 1 additions and 1 deletions

View File

@ -1924,7 +1924,7 @@ namespace BizHawk.Client.EmuHawk
return 0.RangeToExclusive(_horizontalColumnTops.Length).Contains(index)
? _horizontalColumnTops[index]
: _horizontalColumnTops.Last() + CellHeight;
: _horizontalColumnTops.Last() + _horizontalColumnHeights.Last();
}
private int GetHColBottom(int index) =>