From c3cda4122d4a543f68310463752c3b0f575d8946 Mon Sep 17 00:00:00 2001 From: Antoine Aflalo Date: Fri, 2 Apr 2021 15:41:49 -0400 Subject: [PATCH] fix(Mute): Set default shortcut one not taken by windows --- SoundSwitch/Framework/Configuration/SoundSwitchConfiguration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SoundSwitch/Framework/Configuration/SoundSwitchConfiguration.cs b/SoundSwitch/Framework/Configuration/SoundSwitchConfiguration.cs index 961963d7a6..f20657a0cb 100644 --- a/SoundSwitch/Framework/Configuration/SoundSwitchConfiguration.cs +++ b/SoundSwitch/Framework/Configuration/SoundSwitchConfiguration.cs @@ -57,7 +57,7 @@ public SoundSwitchConfiguration() SelectedRecordingDeviceListId = new HashSet(); PlaybackHotKey = new HotKey(Keys.F11, HotKey.ModifierKeys.Alt | HotKey.ModifierKeys.Control); RecordingHotKey = new HotKey(Keys.F7, HotKey.ModifierKeys.Alt | HotKey.ModifierKeys.Control); - MuteRecordingHotKey = new HotKey(Keys.M, HotKey.ModifierKeys.Shift | HotKey.ModifierKeys.Win); + MuteRecordingHotKey = new HotKey(Keys.M, HotKey.ModifierKeys.Control | HotKey.ModifierKeys.Alt); SelectedDevices = new HashSet(); SwitchIcon = IconChangerFactory.ActionEnum.Never;