aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-02-22 17:28:35 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-02-22 17:28:35 +0100
commitaf38a6341902dc73e2f5d76a8ee585564ad1208e (patch)
tree872ae1f38c4bdc975085c3893a2c2d9e129a869d /src
parentoverride platform in code and simulate different environment (diff)
parentfix accelerator for Windows (diff)
downloadferdium-app-af38a6341902dc73e2f5d76a8ee585564ad1208e.tar.gz
ferdium-app-af38a6341902dc73e2f5d76a8ee585564ad1208e.tar.zst
ferdium-app-af38a6341902dc73e2f5d76a8ee585564ad1208e.zip
Merge branch 'fix/copy-paste' into feature/titlebar
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 d043dee87..2bdd36b2c 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 {