input roll - fix vertical padding in vertical mode

This commit is contained in:
adelikat 2014-08-31 17:22:53 +00:00
parent f5059bf53c
commit 9534384e3d
1 changed files with 1 additions and 1 deletions

View File

@ -591,7 +591,7 @@ namespace BizHawk.Client.EmuHawk
for (int j = 0; j < _columns.Count; j++)//Horizontal
{
string text;
var point = new Point(_columns[j].Left.Value + xPadding, (i + 1) * CellHeight); //i + 1 accounts for the column header
var point = new Point(_columns[j].Left.Value + xPadding, ((i + 1) * CellHeight) + CellPadding); //i + 1 accounts for the column header
QueryItemText(i + startRow, j, out text);
if (!string.IsNullOrWhiteSpace(text))
{