From 54ef35d2e0192db6ada799b5cb8fb5ca89eeeea5 Mon Sep 17 00:00:00 2001 From: feos Date: Tue, 13 Feb 2024 01:11:21 +0300 Subject: [PATCH] black text on white BG is how input roll is meant to look if we ever support swapping the colors for a dark theme, bd3f9191290f7df25deb16081499679636a387a2 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) --- .../CustomControls/InputRoll/InputRoll.cs | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs b/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs index 815ca2ba19..dc25f7edc4 100644 --- a/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs +++ b/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs @@ -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)