From 219ef1d485c42f88a1f68ea014b4e6c14a3ac0a4 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Wed, 22 Nov 2017 09:53:44 +0100 Subject: fix macOS shortcuts for tabswitching --- src/stores/AppStore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stores') diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js index 14bdab094..c55906930 100644 --- a/src/stores/AppStore.js +++ b/src/stores/AppStore.js @@ -127,13 +127,13 @@ export default class AppStore extends Store { // Set active the next service key( - '⌘+pagedown, ctrl+pagedown, ⌘+tab, ctrl+tab', () => { + '⌘+pagedown, ctrl+pagedown, ⌘+alt+right, ctrl+tab', () => { this.actions.service.setActiveNext(); }); // Set active the prev service key( - '⌘+pageup, ctrl+pageup, ⌘+shift+tab, ctrl+shift+tab', () => { + '⌘+pageup, ctrl+pageup, ⌘+alt+left, ctrl+shift+tab', () => { this.actions.service.setActivePrev(); }); -- cgit v1.2.3-70-g09d2 From 6fcc770fa82e04dfa13c2478b05fdf1adeac1011 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Wed, 22 Nov 2017 09:59:01 +0100 Subject: Add missing toggle mute shortcut --- src/stores/AppStore.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/stores') 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 { this.actions.service.setActivePrev(); }); + // Global Mute + key( + '⌘+shift+m ctrl+shift+m', () => { + this.actions.app.toggleMuteApp(); + }); + this.locale = this._getDefaultLocale(); this._healthCheck(); -- cgit v1.2.3-70-g09d2