Add an option for mono mic capture in ZoomIt

This commit is contained in:
foxmsft
2026-02-05 01:05:33 +01:00
committed by Alex Mihaiuc
parent bb4c548a4b
commit 450d6db343
12 changed files with 71 additions and 6 deletions

View File

@@ -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;