Skip to content

Commit

Permalink
fix: use correct 'pasteandmatchstyle' shortcut on macOS (electron#24153)
Browse files Browse the repository at this point in the history
  • Loading branch information
str4nge-4ttr4ctor authored and sentialx committed Jul 11, 2020
1 parent 33ca78b commit 293affd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/browser/api/menu-item-roles.js
Expand Up @@ -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
},
Expand Down

0 comments on commit 293affd

Please sign in to comment.