aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-22 09:53:44 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-11-22 09:53:44 +0100
commit219ef1d485c42f88a1f68ea014b4e6c14a3ac0a4 (patch)
tree51e5b693031365faca160f4dd4dbd90688822a8b /src/stores/AppStore.js
parentfix merging issue (diff)
downloadferdium-app-219ef1d485c42f88a1f68ea014b4e6c14a3ac0a4.tar.gz
ferdium-app-219ef1d485c42f88a1f68ea014b4e6c14a3ac0a4.tar.zst
ferdium-app-219ef1d485c42f88a1f68ea014b4e6c14a3ac0a4.zip
fix macOS shortcuts for tabswitching
Diffstat (limited to 'src/stores/AppStore.js')
-rw-r--r--src/stores/AppStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 14bdab094..c55906930 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -127,13 +127,13 @@ export default class AppStore extends Store {
127 127
128 // Set active the next service 128 // Set active the next service
129 key( 129 key(
130 '⌘+pagedown, ctrl+pagedown, ⌘+tab, ctrl+tab', () => { 130 '⌘+pagedown, ctrl+pagedown, ⌘+alt+right, ctrl+tab', () => {
131 this.actions.service.setActiveNext(); 131 this.actions.service.setActiveNext();
132 }); 132 });
133 133
134 // Set active the prev service 134 // Set active the prev service
135 key( 135 key(
136 '⌘+pageup, ctrl+pageup, ⌘+shift+tab, ctrl+shift+tab', () => { 136 '⌘+pageup, ctrl+pageup, ⌘+alt+left, ctrl+shift+tab', () => {
137 this.actions.service.setActivePrev(); 137 this.actions.service.setActivePrev();
138 }); 138 });
139 139