fix bug that made statusbar look ugly after going fullscreen
This commit is contained in:
parent
cb898334ac
commit
0961649dfd
|
@ -768,6 +768,9 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
#if WINDOWS
|
#if WINDOWS
|
||||||
Padding = new System.Windows.Forms.Padding(0);
|
Padding = new System.Windows.Forms.Padding(0);
|
||||||
|
//it's important that we set the form color back to this, because the statusbar icons blend onto the mainform, not onto the statusbar--
|
||||||
|
//so we need the statusbar and mainform backdrop color to match
|
||||||
|
BackColor = SystemColors.Control;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
MainMenuStrip.Visible = true;
|
MainMenuStrip.Visible = true;
|
||||||
|
|
Loading…
Reference in New Issue