Skip to content

Commit

Permalink
fix(Mute): Set default shortcut one not taken by windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Belphemur committed Apr 2, 2021
1 parent a8c95d4 commit c3cda41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public SoundSwitchConfiguration()
SelectedRecordingDeviceListId = new HashSet<string>();
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<DeviceInfo>();
SwitchIcon = IconChangerFactory.ActionEnum.Never;
Expand Down

0 comments on commit c3cda41

Please sign in to comment.