Merge pull request #7236 from yuya-oc/accelerator-for-redo
Use Ctrl+Y as the accelerator of redo on Windows
This commit is contained in:
commit
0ac4b89a0a
2 changed files with 11 additions and 1 deletions
|
@ -69,7 +69,7 @@ const roles = {
|
|||
},
|
||||
redo: {
|
||||
label: 'Redo',
|
||||
accelerator: 'Shift+CommandOrControl+Z',
|
||||
accelerator: process.platform === 'win32' ? 'Control+Y' : 'Shift+CommandOrControl+Z',
|
||||
webContentsMethod: 'redo'
|
||||
},
|
||||
resetzoom: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue