Disable MultiHawk's View menu when no ROM is loaded to prevent crash.

This commit is contained in:
J.D. Purcell 2017-04-09 23:23:20 -04:00
parent ab155217e7
commit 45f1a4b64f
2 changed files with 3 additions and 0 deletions

View File

@ -218,6 +218,7 @@
this._2xMenuItem,
this._3xMenuItem,
this._4xMenuItem});
this.ViewSubMenu.Enabled = false;
this.ViewSubMenu.Name = "ViewSubMenu";
this.ViewSubMenu.Size = new System.Drawing.Size(44, 20);
this.ViewSubMenu.Text = "&View";

View File

@ -372,6 +372,7 @@ namespace BizHawk.Client.MultiHawk
if (EmulatorWindows.Count == 1)
{
Emulator = ew.Emulator;
ViewSubMenu.Enabled = true;
}
_inputManager.SyncControls();
@ -1289,6 +1290,7 @@ namespace BizHawk.Client.MultiHawk
else
{
Emulator = null;
ViewSubMenu.Enabled = false;
}
}
}