If in full screen, add Open ROM to the context menu, so you can stay in fullscreen and still change roms

This commit is contained in:
adelikat 2012-11-28 02:00:08 +00:00
parent 83ae2278ec
commit 49b7f9165d
1 changed files with 9 additions and 1 deletions

View File

@ -1036,7 +1036,15 @@ namespace BizHawk.MultiClient
}
else
{
cmiOpenRom.Visible = false;
if (InFullscreen)
{
cmiOpenRom.Visible = true;
}
else
{
cmiOpenRom.Visible = false;
}
cmiLoadLastRom.Visible = false;
toolStripSeparator_afterRomLoading.Visible = false;