Skip to content

Commit

Permalink
fix: windowmenu did not show the window list on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
miniak committed Jan 14, 2019
1 parent df62e78 commit 4c669ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion atom/browser/ui/cocoa/atom_menu_controller.mm
Expand Up @@ -231,7 +231,9 @@ - (void)addItemToMenu:(NSMenu*)menu
[item setSubmenu:submenu];

// Set submenu's role.
if (role == base::ASCIIToUTF16("window") && [submenu numberOfItems])
if ((role == base::ASCIIToUTF16("window") ||
role == base::ASCIIToUTF16("windowmenu")) &&
[submenu numberOfItems])
[NSApp setWindowsMenu:submenu];
else if (role == base::ASCIIToUTF16("help"))
[NSApp setHelpMenu:submenu];
Expand Down
4 changes: 1 addition & 3 deletions lib/browser/api/menu-item-roles.js
Expand Up @@ -247,9 +247,7 @@ const roles = {
{ role: 'zoom' },
...(isMac ? [
{ type: 'separator' },
{ role: 'front' },
{ type: 'separator' },
{ role: 'window' }
{ role: 'front' }
] : [
{ role: 'close' }
])
Expand Down

0 comments on commit 4c669ea

Please sign in to comment.