From 4e66f1b2c60e0c032b690128be4f1583dbce88a5 Mon Sep 17 00:00:00 2001 From: Elena Topaka Date: Wed, 17 Jun 2020 23:13:46 +0200 Subject: [PATCH] fix: use correct 'pasteandmatchstyle' shortcut on macOS (#24153) --- lib/browser/api/menu-item-roles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/browser/api/menu-item-roles.js b/lib/browser/api/menu-item-roles.js index 7e238f97d5ae..3b2bd732594b 100644 --- a/lib/browser/api/menu-item-roles.js +++ b/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 },