Linux: Debugger - Fixed assembler/script text color for dark themes

This commit is contained in:
Sour 2019-01-27 14:02:04 -05:00
parent 05f99aba7c
commit dd72d2669f
2 changed files with 2 additions and 0 deletions

View file

@ -32,6 +32,7 @@ namespace Mesen.GUI.Debugger
{
InitializeComponent();
ThemeHelper.ExcludeFromTheme(txtCode);
txtCode.ForeColor = Color.Black;
DebugInfo config = ConfigManager.Config.DebugInfo;

View file

@ -31,6 +31,7 @@ namespace Mesen.GUI.Debugger
{
InitializeComponent();
ThemeHelper.ExcludeFromTheme(txtScriptContent);
txtScriptContent.ForeColor = Color.Black;
DebugInfo.ApplyConfig();