black text on white BG is how input roll is meant to look
if we ever support swapping the colors for a dark theme, bd3f919129
could be a useful refactor, but only allowing linux users to see input roll properly was wrong (because setting BG to Control color makes it look disabled)
This commit is contained in:
parent
b34e713f1c
commit
54ef35d2e0
|
@ -130,18 +130,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
_hoverTimer.Tick += HoverTimerEventProcessor;
|
||||
_hoverTimer.Stop();
|
||||
|
||||
if (OSTailoredCode.IsUnixHost)
|
||||
{
|
||||
// sorry dark theme users, but this needs to be readable
|
||||
_backColor = Color.White;
|
||||
_foreColor = Color.Black;
|
||||
}
|
||||
else
|
||||
{
|
||||
// this is the ctor, so these reads will always return the default values
|
||||
_backColor = base.BackColor;
|
||||
_foreColor = base.ForeColor;
|
||||
}
|
||||
_backColor = Color.White;
|
||||
_foreColor = Color.Black;
|
||||
}
|
||||
|
||||
private void HoverTimerEventProcessor(object sender, EventArgs e)
|
||||
|
|
Loading…
Reference in New Issue