Skip to content

Commit c3cda41

Browse files
committed
fix(Mute): Set default shortcut one not taken by windows
1 parent a8c95d4 commit c3cda41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SoundSwitch/Framework/Configuration/SoundSwitchConfiguration.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public SoundSwitchConfiguration()
5757
SelectedRecordingDeviceListId = new HashSet<string>();
5858
PlaybackHotKey = new HotKey(Keys.F11, HotKey.ModifierKeys.Alt | HotKey.ModifierKeys.Control);
5959
RecordingHotKey = new HotKey(Keys.F7, HotKey.ModifierKeys.Alt | HotKey.ModifierKeys.Control);
60-
MuteRecordingHotKey = new HotKey(Keys.M, HotKey.ModifierKeys.Shift | HotKey.ModifierKeys.Win);
60+
MuteRecordingHotKey = new HotKey(Keys.M, HotKey.ModifierKeys.Control | HotKey.ModifierKeys.Alt);
6161

6262
SelectedDevices = new HashSet<DeviceInfo>();
6363
SwitchIcon = IconChangerFactory.ActionEnum.Never;

0 commit comments

Comments
 (0)