aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/Menu.js2
-rw-r--r--src/stores/AppStore.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Menu.js b/src/lib/Menu.js
index 6624ab75e..d9c30466b 100644
--- a/src/lib/Menu.js
+++ b/src/lib/Menu.js
@@ -249,7 +249,7 @@ export default class FranzMenu {
249 } 249 }
250 250
251 @computed get serviceTpl() { 251 @computed get serviceTpl() {
252 const services = this.stores.services.enabled; 252 const services = this.stores.services.allDisplayed;
253 253
254 if (this.stores.user.isLoggedIn) { 254 if (this.stores.user.isLoggedIn) {
255 return services.map((service, i) => ({ 255 return services.map((service, i) => ({
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 8c55a350d..17ec832cf 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -138,7 +138,7 @@ export default class AppStore extends Store {
138 this.actions.service.setActivePrev(); 138 this.actions.service.setActivePrev();
139 }); 139 });
140 140
141 // Global Mute 141 // Global Mute
142 key( 142 key(
143 '⌘+shift+m ctrl+shift+m', () => { 143 '⌘+shift+m ctrl+shift+m', () => {
144 this.actions.app.toggleMuteApp(); 144 this.actions.app.toggleMuteApp();