fix: use correct 'pasteandmatchstyle' shortcut on macOS (#24153)

This commit is contained in:
Elena Topaka
2020-06-17 23:13:46 +02:00
committed by GitHub
parent a54fcde3f4
commit 4e66f1b2c6

View File

@@ -71,7 +71,7 @@ const roles = {
},
pasteandmatchstyle: {
label: 'Paste and Match Style',
accelerator: 'Shift+CommandOrControl+V',
accelerator: isMac ? 'Cmd+Option+Shift+V' : 'Shift+CommandOrControl+V',
webContentsMethod: 'pasteAndMatchStyle',
registerAccelerator: false
},