1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

moved label to a better position

This commit is contained in:
William Grant
2018-03-28 19:17:40 +02:00
parent 9a445e34fd
commit e1e3cc7999

View File

@@ -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())
}
}
]
}