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.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index c55906930..3eb2c38d2 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -137,6 +137,12 @@ export default class AppStore extends Store {
137 this.actions.service.setActivePrev(); 137 this.actions.service.setActivePrev();
138 }); 138 });
139 139
140 // Global Mute
141 key(
142 '⌘+shift+m ctrl+shift+m', () => {
143 this.actions.app.toggleMuteApp();
144 });
145
140 this.locale = this._getDefaultLocale(); 146 this.locale = this._getDefaultLocale();
141 147
142 this._healthCheck(); 148 this._healthCheck();