aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
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 4cfe6d0b5..f608a689e 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -114,13 +114,13 @@ export default class AppStore extends Store {
114 114
115 // Set active the next service 115 // Set active the next service
116 key( 116 key(
117 '⌘+pagedown, ctrl+pagedown, ⌘+shift+tab, ctrl+shift+tab', () => { 117 '⌘+pagedown, ctrl+pagedown, ⌘+tab, ctrl+tab', () => {
118 this.actions.service.setActiveNext(); 118 this.actions.service.setActiveNext();
119 }); 119 });
120 120
121 // Set active the prev service 121 // Set active the prev service
122 key( 122 key(
123 '⌘+pageup, ctrl+pageup, ⌘+tab, ctrl+tab', () => { 123 '⌘+pageup, ctrl+pageup, ⌘+shift+tab, ctrl+shift+tab', () => {
124 this.actions.service.setActivePrev(); 124 this.actions.service.setActivePrev();
125 }); 125 });
126 126