fix bug that made statusbar look ugly after going fullscreen

This commit is contained in:
zeromus 2014-02-22 21:54:42 +00:00
parent cb898334ac
commit 0961649dfd
1 changed files with 3 additions and 0 deletions

View File

@ -768,6 +768,9 @@ namespace BizHawk.Client.EmuHawk
#if WINDOWS
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
MainMenuStrip.Visible = true;