1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-12 17:26:17 +00:00

Replace shortcut for 'Next Note' and 'Previous Note'

This commit is contained in:
JianXu
2018-07-07 23:02:17 +08:00
parent 0e9e7d644a
commit e182390480

View File

@@ -235,14 +235,14 @@ const view = {
},
{
label: 'Next Note',
accelerator: 'Control+J',
accelerator: 'CommandOrControl+]',
click () {
mainWindow.webContents.send('list:next')
}
},
{
label: 'Previous Note',
accelerator: 'Control+K',
accelerator: 'CommandOrControl+[',
click () {
mainWindow.webContents.send('list:prior')
}