diff --git a/index.js b/index.js index 61642ff..bae3220 100644 --- a/index.js +++ b/index.js @@ -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 ]; }