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 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