Skip to content

Commit

Permalink
Fix menu separator for win
Browse files Browse the repository at this point in the history
  • Loading branch information
dankocherga committed May 1, 2017
1 parent 17c4812 commit ed0d276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -48,8 +48,8 @@ function createMenu() {

if (process.platform === 'darwin') {
appMenu.submenu.push({ label: 'About Application', selector: 'orderFrontStandardAboutPanel:' });
appMenu.submenu.push({ type: 'separator' });
}
appMenu.submenu.push({ type: 'separator' });
appMenu.submenu.push({ label: 'Quit', accelerator: 'Command+Q', click: function() { app.quit(); } });
return [ appMenu, editMenu ];
}
Expand Down

0 comments on commit ed0d276

Please sign in to comment.