diff --git a/lib/main-menu.js b/lib/main-menu.js index f0830863..644491ec 100644 --- a/lib/main-menu.js +++ b/lib/main-menu.js @@ -230,13 +230,6 @@ const view = { BrowserWindow.getFocusedWindow().toggleDevTools() } }, - { - label: 'Toggle Full Screen', - accelerator: macOS ? 'Command+Control+F' : 'F11', - click () { - mainWindow.setFullScreen(!mainWindow.isFullScreen()) - } - }, { type: 'separator' }, @@ -263,6 +256,16 @@ const view = { click () { mainWindow.webContents.send('top:focus-search') } + }, + { + type: 'separator' + }, + { + label:'Toggle Full Screen', + accelerator: macOS ? 'Command+Control+F' : 'F11', + click () { + mainWindow.setFullScreen(!mainWindow.isFullScreen()) + } } ] }