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

move devtool to main-menu

This commit is contained in:
Rokt33r
2016-04-18 04:37:00 +09:00
parent 8c236cb5cb
commit 65c969a321
2 changed files with 10 additions and 9 deletions

View File

@@ -146,6 +146,16 @@ var view = {
click: function () {
BrowserWindow.getFocusedWindow().reload()
}
},
{
label: 'Toggle Developer Tools',
accelerator: (function () {
if (process.platform === 'darwin') return 'Command+Alt+I'
else return 'Ctrl+Shift+I'
})(),
click: function () {
BrowserWindow.getFocusedWindow().toggleDevTools()
}
}
]
}