aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-02-22 17:25:46 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-02-22 17:25:46 +0100
commita1f631ebca6fa288543ce1e767c308bd90ab46fb (patch)
tree1fb01d9bee7e1ecdd8862f992eb03fc9149ce6c9 /src
parenttrying to get to the bottom of this (diff)
downloadferdium-app-a1f631ebca6fa288543ce1e767c308bd90ab46fb.tar.gz
ferdium-app-a1f631ebca6fa288543ce1e767c308bd90ab46fb.tar.zst
ferdium-app-a1f631ebca6fa288543ce1e767c308bd90ab46fb.zip
fix accelerator for Windows
Diffstat (limited to 'src')
-rw-r--r--src/lib/Menu.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Menu.js b/src/lib/Menu.js
index 703060dc1..16e91374e 100644
--- a/src/lib/Menu.js
+++ b/src/lib/Menu.js
@@ -23,12 +23,12 @@ const template = [
23 }, 23 },
24 { 24 {
25 label: 'Copy', 25 label: 'Copy',
26 accelerator: 'Cmd+C', 26 accelerator: 'CmdOrCtrl+C',
27 selector: 'copy:', 27 selector: 'copy:',
28 }, 28 },
29 { 29 {
30 label: 'Paste', 30 label: 'Paste',
31 accelerator: 'Cmd+V', 31 accelerator: 'CmdOrCtrl+V',
32 selector: 'paste:', 32 selector: 'paste:',
33 }, 33 },
34 { 34 {