Browse Source

Projucer: workaround broken "Open Recent" submenu

tags/2021-05-28
stefan 9 years ago
parent
commit
439ecc391b
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      extras/Projucer/Source/Application/jucer_Application.cpp

+ 3
- 1
extras/Projucer/Source/Application/jucer_Application.cpp View File

@@ -157,7 +157,9 @@ void ProjucerApplication::handleAsyncUpdate()
PopupMenu extraAppleMenuItems;
createExtraAppleMenuItems (extraAppleMenuItems);
MenuBarModel::setMacMainMenu (menuModel, &extraAppleMenuItems, "Open Recent");
// workaround broken "Open Recent" submenu: not passing the
// submenu's title here avoids the defect in JuceMainMenuHandler::addMenuItem
MenuBarModel::setMacMainMenu (menuModel, &extraAppleMenuItems); //, "Open Recent");
#endif
versionChecker = new LatestVersionChecker();


Loading…
Cancel
Save