Cache `ToolStripRenderer` used by `FormBase.FixBackColorOnControls`

This commit is contained in:
YoshiRulz 2022-08-07 17:18:25 +10:00
parent 322ed164bf
commit d5bf542a3c
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 1 deletions

View File

@ -26,11 +26,13 @@ namespace BizHawk.Client.EmuHawk
if (control.BackColor == SystemColors.Control) control.BackColor = Color.WhiteSmoke;
foreach (Control c1 in control.Controls)
{
if (c1 is ToolStrip ts) ts.Renderer = new ToolStripProfessionalRenderer(new LinuxColorTable());
if (c1 is ToolStrip ts) ts.Renderer = GlobalToolStripRenderer;
else FixBackColorOnControls(c1);
}
}
public static readonly ToolStripRenderer GlobalToolStripRenderer = new ToolStripProfessionalRenderer(new LinuxColorTable());
private string? _windowTitleStatic;
public virtual bool BlocksInputWhenFocused