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

Merge pull request #2192 from enyaxu/improvement/2133

Replace shortcut for 'Next Note' and 'Previous Note'
This commit is contained in:
Junyoung Choi (Sai)
2018-07-17 11:46:08 +09:00
committed by GitHub

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')
}