1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00
asmsuechan
2017-01-21 16:06:14 +09:00
parent de19c51061
commit 4523743150

View File

@@ -150,14 +150,14 @@ var view = {
{
label: 'Next Note',
accelerator: 'Control + J',
click: function () {
click () {
mainWindow.webContents.send('list:next')
}
},
{
label: 'Previous Note',
accelerator: 'Control + U',
click: function () {
click () {
mainWindow.webContents.send('list:prior')
}
},
@@ -167,7 +167,7 @@ var view = {
{
label: 'Focus Search',
accelerator: 'Control + S',
click: function () {
click () {
mainWindow.webContents.send('top:focus-search')
}
}