Disable MultiHawk's View menu when no ROM is loaded to prevent crash.
This commit is contained in:
parent
ab155217e7
commit
45f1a4b64f
|
@ -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";
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue