diff --git a/src/main/menus/app.js b/src/main/menus/app.js index bc6f23da..7a81dd76 100644 --- a/src/main/menus/app.js +++ b/src/main/menus/app.js @@ -138,23 +138,6 @@ var createTemplate = function(mainWindow, config) { focusedWindow.setFullScreen(!focusedWindow.isFullScreen()); } } - }, { - type: 'separator' - }, { - label: 'Toggle Developer Tools', - accelerator: (function() { - if (process.platform === 'darwin') { - return 'Alt+Command+I'; - } - else { - return 'Ctrl+Shift+I'; - } - })(), - click: function(item, focusedWindow) { - if (focusedWindow) { - focusedWindow.toggleDevTools(); - } - } }, separatorItem, { label: 'Actual Size', accelerator: 'CmdOrCtrl+0', @@ -173,6 +156,21 @@ var createTemplate = function(mainWindow, config) { click: () => { mainWindow.webContents.send('zoom-in', -1); } + }, separatorItem, { + label: 'Toggle Developer Tools', + accelerator: (function() { + if (process.platform === 'darwin') { + return 'Alt+Command+I'; + } + else { + return 'Ctrl+Shift+I'; + } + })(), + click: function(item, focusedWindow) { + if (focusedWindow) { + focusedWindow.toggleDevTools(); + } + } }] });