aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-10-27 12:26:36 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-10-27 12:26:36 +0200
commit37d59235ee8876e679d36cc9c7a8cce643e9bca0 (patch)
treee7325b80d6c97086a74ec837ea850d4c05146e42 /src/stores/AppStore.js
parentMerge pull request #141 from DBozhinovski/master (diff)
downloadferdium-app-37d59235ee8876e679d36cc9c7a8cce643e9bca0.tar.gz
ferdium-app-37d59235ee8876e679d36cc9c7a8cce643e9bca0.tar.zst
ferdium-app-37d59235ee8876e679d36cc9c7a8cce643e9bca0.zip
fix(Shortcuts): Flip shortcut to navigate to next/previous service
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 7dbef985d..f3c4db0cf 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -123,13 +123,13 @@ export default class AppStore extends Store {
123 123
124 // Set active the next service 124 // Set active the next service
125 key( 125 key(
126 '⌘+pagedown, ctrl+pagedown, ⌘+shift+tab, ctrl+shift+tab', () => { 126 '⌘+pagedown, ctrl+pagedown, ⌘+tab, ctrl+tab', () => {
127 this.actions.service.setActiveNext(); 127 this.actions.service.setActiveNext();
128 }); 128 });
129 129
130 // Set active the prev service 130 // Set active the prev service
131 key( 131 key(
132 '⌘+pageup, ctrl+pageup, ⌘+tab, ctrl+tab', () => { 132 '⌘+pageup, ctrl+pageup, ⌘+shift+tab, ctrl+shift+tab', () => {
133 this.actions.service.setActivePrev(); 133 this.actions.service.setActivePrev();
134 }); 134 });
135 135