mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 01:36:31 +02:00
Adds a video trim dialog to ZoomIt (#45334)
## Summary of the Pull Request Adds a video trim dialog to ZoomIt ## PR Checklist Closes 45333 ## Validation Steps Performed Manual validation --------- Co-authored-by: Mark Russinovich <markruss@ntdev.microsoft.com> Co-authored-by: foxmsft <foxmsft@hotmail.com>
This commit is contained in:
@@ -850,6 +850,20 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
|
||||
}
|
||||
}
|
||||
|
||||
public bool RecordCaptureSystemAudio
|
||||
{
|
||||
get => _zoomItSettings.Properties.CaptureSystemAudio.Value;
|
||||
set
|
||||
{
|
||||
if (_zoomItSettings.Properties.CaptureSystemAudio.Value != value)
|
||||
{
|
||||
_zoomItSettings.Properties.CaptureSystemAudio.Value = value;
|
||||
OnPropertyChanged(nameof(RecordCaptureSystemAudio));
|
||||
NotifySettingsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public bool RecordCaptureAudio
|
||||
{
|
||||
get => _zoomItSettings.Properties.CaptureAudio.Value;
|
||||
|
||||
Reference in New Issue
Block a user