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:
feos 2024-02-13 01:11:21 +03:00
parent b34e713f1c
commit 54ef35d2e0
1 changed files with 2 additions and 12 deletions

View File

@ -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)