InputRoll - center text in cell

This commit is contained in:
adelikat 2014-09-22 15:35:23 +00:00
parent fb4b4f4e34
commit 45212bf0f2
1 changed files with 2 additions and 2 deletions

View File

@ -622,7 +622,7 @@ namespace BizHawk.Client.EmuHawk
continue;
}
string text;
var point = new Point(col.Left.Value + xPadding, RowsToPixels(i));
var point = new Point(col.Left.Value + xPadding, RowsToPixels(i) + CellPadding);
Bitmap image = null;
if (QueryItemIcon != null)
@ -632,7 +632,7 @@ namespace BizHawk.Client.EmuHawk
if (image != null)
{
Gdi.DrawBitmap(image, new Point(col.Left.Value, point.Y + CellPadding),true);
Gdi.DrawBitmap(image, new Point(col.Left.Value, point.Y + CellPadding), true);
}
else
{