diff options
author | sr55 <[email protected]> | 2017-12-12 21:38:59 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-12-12 21:38:59 +0000 |
commit | 02bb7c53bf68e0ba64ccd221b3435b444abb744b (patch) | |
tree | dfae39db91e22795d26db21f2bc0e250109505cb /win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs | |
parent | 462d4aa8d369266bbc8204148c6da85930893790 (diff) |
WinGui: Initial Activation of the "modified" preset detection code. (Audio/Subtitle Tabs still to be done)
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs index 8d2635485..e95579673 100644 --- a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs @@ -571,6 +571,7 @@ namespace HandBrakeWPF.ViewModels this.Task.Anamorphic = value;
this.NotifyOfPropertyChange(() => this.SelectedAnamorphicMode);
this.RecaulcatePictureSettingsProperties(ChangedPictureField.Anamorphic);
+ this.OnTabStatusChanged(null);
}
}
}
@@ -590,6 +591,7 @@ namespace HandBrakeWPF.ViewModels this.Task.Modulus = value;
this.NotifyOfPropertyChange(() => this.SelectedModulus);
this.RecaulcatePictureSettingsProperties(ChangedPictureField.Modulus);
+ this.OnTabStatusChanged(null);
}
}
|