aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-10-22 22:38:13 +0200
committerLibravatar GitHub <noreply@github.com>2017-10-22 22:38:13 +0200
commitf072b3550d264e00a141003c5a00130427c8c906 (patch)
treeb51fe393eca0034b4185dee69c01b63a3042e7bf /src/stores/AppStore.js
parent[translation] French (fr) (diff)
parentMerge pull request #62 from grzeswol/master (diff)
downloadferdium-app-f072b3550d264e00a141003c5a00130427c8c906.tar.gz
ferdium-app-f072b3550d264e00a141003c5a00130427c8c906.tar.zst
ferdium-app-f072b3550d264e00a141003c5a00130427c8c906.zip
Merge branch 'develop' into master
Diffstat (limited to 'src/stores/AppStore.js')
-rw-r--r--src/stores/AppStore.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index a5e0839f2..42ec25204 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -125,6 +125,18 @@ export default class AppStore extends Store {
125 this.actions.service.openDevToolsForActiveService(); 125 this.actions.service.openDevToolsForActiveService();
126 }); 126 });
127 127
128 // Set active the next service
129 key(
130 '⌘+pagedown, ctrl+pagedown, ⌘+shift+tab, ctrl+shift+tab', () => {
131 this.actions.service.setActiveNext();
132 });
133
134 // Set active the prev service
135 key(
136 '⌘+pageup, ctrl+pageup, ⌘+tab, ctrl+tab', () => {
137 this.actions.service.setActivePrev();
138 });
139
128 this.locale = this._getDefaultLocale(); 140 this.locale = this._getDefaultLocale();
129 141
130 this._healthCheck(); 142 this._healthCheck();