diff options
author | sr55 <[email protected]> | 2015-01-30 21:38:18 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-01-30 21:38:18 +0000 |
commit | 4e341a86cf8893b13757634ba44fb2b9c23b5b0f (patch) | |
tree | 0c02add5cffa8a8b03d9afbe5d39a2db98b4e719 /win/CS | |
parent | dad21c4885a8bb3b5fa75cebe0e2f568ab83cb24 (diff) |
WinGui: Another small fix to nlmeans custom. Missed 1 instances where the showcustom option wasn't set.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6833 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/FiltersViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/FiltersViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/FiltersViewModel.cs index 93b5ad0d5..8e5c9f6d5 100644 --- a/win/CS/HandBrakeWPF/ViewModels/FiltersViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/FiltersViewModel.cs @@ -301,7 +301,7 @@ namespace HandBrakeWPF.ViewModels this.NotifyOfPropertyChange(() => this.SelectedDenoise);
// Show / Hide the Custom Control
- this.ShowDenoiseCustom = this.CurrentTask.Denoise == Denoise.hqdn3d && this.CurrentTask.DenoisePreset == DenoisePreset.Custom;
+ this.ShowDenoiseCustom = this.CurrentTask.DenoisePreset == DenoisePreset.Custom;
this.NotifyOfPropertyChange(() => this.ShowDenoiseCustom);
this.SelectedDenoisePreset = this.CurrentTask.Denoise == Denoise.hqdn3d ? DenoisePreset.Weak : DenoisePreset.Ultralight; // Default so we don't have an invalid preset.
|