aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-10-22 21:55:35 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-10-22 21:55:35 +0200
commiteae93c07f4802353100f99b2b07c5e812f9b25a9 (patch)
tree273eba7b9161d4e37266887a5c11f38fc27b1102 /src/stores/AppStore.js
parentrun lint before using yarn commit (diff)
parentfeature(Shortcuts): Add tab cycling with ctrl[+shift]+tab or ctrl+[pageup|pag... (diff)
downloadferdium-app-eae93c07f4802353100f99b2b07c5e812f9b25a9.tar.gz
ferdium-app-eae93c07f4802353100f99b2b07c5e812f9b25a9.tar.zst
ferdium-app-eae93c07f4802353100f99b2b07c5e812f9b25a9.zip
Merge branch 'develop' of github.com:meetfranz/franz into develop
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();