hexeditor: make secondary highlight color depend on primary

fixes custom color mismatch
This commit is contained in:
feos 2015-12-20 23:06:44 +03:00
parent 65415608e5
commit a77a224f9b
1 changed files with 2 additions and 2 deletions

View File

@ -2179,8 +2179,8 @@ namespace BizHawk.Client.EmuHawk
}
else
{
e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0x77FFD4D4)), rect);
e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0x77FFD4D4)), textrect);
e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0x44, Global.Config.HexHighlightColor)), rect);
e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0x44, Global.Config.HexHighlightColor)), textrect);
}
}
}