aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores')
-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