Input roll - a couple of small tweaks

This commit is contained in:
adelikat 2014-08-29 14:49:36 +00:00
parent e46a8a4286
commit ae45a8452b
1 changed files with 6 additions and 6 deletions

View File

@ -591,7 +591,7 @@ namespace BizHawk.Client.EmuHawk
}
else
{
Gdi.DrawRectangle(0, 0, Width, CellHeight);
Gdi.DrawRectangle(0, 0, Width, CellHeight + 1);
Gdi.FillRectangle(1, 1, Width - 2, CellHeight);
int start = 0;
@ -646,6 +646,11 @@ namespace BizHawk.Client.EmuHawk
Gdi.SetSolidPen(Color.Black);
Gdi.DrawRectangle(startPoint.X, startPoint.Y, Width, Height);
if (QueryItemBkColor != null && UseCustomBackground)
{
DoBackGroundCallback(e);
}
if (GridLines)
{
Gdi.SetSolidPen(SystemColors.ControlLight);
@ -689,11 +694,6 @@ namespace BizHawk.Client.EmuHawk
}
}
if (QueryItemBkColor != null && UseCustomBackground)
{
DoBackGroundCallback(e);
}
if (SelectedItems.Any())
{
DoSelectionBG(e);