mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 01:36:31 +02:00
Add an option for mono mic capture in ZoomIt
This commit is contained in:
@@ -878,6 +878,20 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
|
||||
}
|
||||
}
|
||||
|
||||
public bool RecordMicMonoMix
|
||||
{
|
||||
get => _zoomItSettings.Properties.MicMonoMix.Value;
|
||||
set
|
||||
{
|
||||
if (_zoomItSettings.Properties.MicMonoMix.Value != value)
|
||||
{
|
||||
_zoomItSettings.Properties.MicMonoMix.Value = value;
|
||||
OnPropertyChanged(nameof(RecordMicMonoMix));
|
||||
NotifySettingsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public string RecordMicrophoneDeviceId
|
||||
{
|
||||
get => _zoomItSettings.Properties.MicrophoneDeviceId.Value;
|
||||
|
||||
Reference in New Issue
Block a user