Browse Source

Make pasteandmatchstyle accelerator OS specific (#24182)

Co-authored-by: Elena Topaka <[email protected]>
trop[bot] 4 years ago
parent
commit
72f2dad3a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/browser/api/menu-item-roles.js

+ 1 - 1
lib/browser/api/menu-item-roles.js

@@ -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
   },