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

refs #226 Adds a shortcut which focuses the note

This commit is contained in:
asmsuechan
2017-01-13 21:05:00 +09:00
parent ad4e50d542
commit 5bd0a446f1

View File

@@ -59,6 +59,13 @@ var file = {
mainWindow.webContents.send('top:new-note') mainWindow.webContents.send('top:new-note')
} }
}, },
{
label: 'Focus Note',
accelerator: 'Control + E',
click: function () {
mainWindow.webContents.send('detail:focus')
}
},
{ {
type: 'separator' type: 'separator'
}, },