while the project is open, the menu still doesn't update to account for this, but at least it can be saved properly now
This commit is contained in:
feos 2020-04-29 23:00:07 +03:00
parent 2ef2f8f119
commit eec3cf44f2
1 changed files with 1 additions and 1 deletions

View File

@ -1317,7 +1317,7 @@ namespace BizHawk.Client.EmuHawk
var item = new ToolStripMenuItem($"Show Player {i}")
{
CheckOnClick = true,
Checked = true
Checked = playerMenus[i].DropDownItems.OfType<ToolStripMenuItem>().Any(mi => mi.Checked)
};
ToolStripMenuItem dummyObject = playerMenus[i];