fix: use correct 'pasteandmatchstyle' shortcut on macOS (#24153)
This commit is contained in:
parent
a54fcde3f4
commit
4e66f1b2c6
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ const roles = {
|
||||||
},
|
},
|
||||||
pasteandmatchstyle: {
|
pasteandmatchstyle: {
|
||||||
label: 'Paste and Match Style',
|
label: 'Paste and Match Style',
|
||||||
accelerator: 'Shift+CommandOrControl+V',
|
accelerator: isMac ? 'Cmd+Option+Shift+V' : 'Shift+CommandOrControl+V',
|
||||||
webContentsMethod: 'pasteAndMatchStyle',
|
webContentsMethod: 'pasteAndMatchStyle',
|
||||||
registerAccelerator: false
|
registerAccelerator: false
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue