Input roll - a couple of small tweaks
This commit is contained in:
parent
e46a8a4286
commit
ae45a8452b
|
@ -591,7 +591,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Gdi.DrawRectangle(0, 0, Width, CellHeight);
|
Gdi.DrawRectangle(0, 0, Width, CellHeight + 1);
|
||||||
Gdi.FillRectangle(1, 1, Width - 2, CellHeight);
|
Gdi.FillRectangle(1, 1, Width - 2, CellHeight);
|
||||||
|
|
||||||
int start = 0;
|
int start = 0;
|
||||||
|
@ -646,6 +646,11 @@ namespace BizHawk.Client.EmuHawk
|
||||||
Gdi.SetSolidPen(Color.Black);
|
Gdi.SetSolidPen(Color.Black);
|
||||||
Gdi.DrawRectangle(startPoint.X, startPoint.Y, Width, Height);
|
Gdi.DrawRectangle(startPoint.X, startPoint.Y, Width, Height);
|
||||||
|
|
||||||
|
if (QueryItemBkColor != null && UseCustomBackground)
|
||||||
|
{
|
||||||
|
DoBackGroundCallback(e);
|
||||||
|
}
|
||||||
|
|
||||||
if (GridLines)
|
if (GridLines)
|
||||||
{
|
{
|
||||||
Gdi.SetSolidPen(SystemColors.ControlLight);
|
Gdi.SetSolidPen(SystemColors.ControlLight);
|
||||||
|
@ -689,11 +694,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (QueryItemBkColor != null && UseCustomBackground)
|
|
||||||
{
|
|
||||||
DoBackGroundCallback(e);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (SelectedItems.Any())
|
if (SelectedItems.Any())
|
||||||
{
|
{
|
||||||
DoSelectionBG(e);
|
DoSelectionBG(e);
|
||||||
|
|
Loading…
Reference in New Issue