diff options
author | sr55 <[email protected]> | 2018-12-30 19:58:13 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2018-12-30 19:58:13 +0000 |
commit | a97d96f97a34eba0a818ca15ec071e95e3311dc2 (patch) | |
tree | fc7cc6ed758a12ab5db1986bb92384bea67eb2a5 /win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs | |
parent | 8fdce9d03073233414d3485e081b7d32b59cf4d3 (diff) |
WinGui: Fix an issue where picture settings (crop and anamorphic) are not correctly restored on queue edit. Fixes #1771
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs index c45d2e092..1764a7dac 100644 --- a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs @@ -729,6 +729,17 @@ namespace HandBrakeWPF.ViewModels this.NotifyOfPropertyChange(() => this.Height);
this.NotifyOfPropertyChange(() => this.SelectedAnamorphicMode);
this.NotifyOfPropertyChange(() => this.SelectedModulus);
+ this.NotifyOfPropertyChange(() => this.CropTop);
+ this.NotifyOfPropertyChange(() => this.CropBottom);
+ this.NotifyOfPropertyChange(() => this.CropLeft);
+ this.NotifyOfPropertyChange(() => this.CropRight);
+ this.NotifyOfPropertyChange(() => this.IsCustomCrop);
+ this.NotifyOfPropertyChange(() => this.MaintainAspectRatio);
+ this.NotifyOfPropertyChange(() => this.DisplayWidth);
+ this.NotifyOfPropertyChange(() => this.ParWidth);
+ this.NotifyOfPropertyChange(() => this.ParHeight);
+
+ this.UpdateVisibileControls();
}
/// <summary>
|