aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-22 09:59:01 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-11-22 09:59:01 +0100
commit6fcc770fa82e04dfa13c2478b05fdf1adeac1011 (patch)
treeab09af186c130faca91136ff37364e16911633ff
parentfix macOS shortcuts for tabswitching (diff)
downloadferdium-app-6fcc770fa82e04dfa13c2478b05fdf1adeac1011.tar.gz
ferdium-app-6fcc770fa82e04dfa13c2478b05fdf1adeac1011.tar.zst
ferdium-app-6fcc770fa82e04dfa13c2478b05fdf1adeac1011.zip
Add missing toggle mute shortcut
-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();