: hb_filter_ids.HB_FILTER_NLMEANS;\r
\r
string settings;\r
- if (job.Denoise == Denoise.hqdn3d\r
- && !string.IsNullOrEmpty(job.CustomDenoise))\r
+ if (!string.IsNullOrEmpty(job.CustomDenoise))\r
{\r
settings = job.CustomDenoise;\r
}\r
\r
if (denoiseChoice == Denoise.NLMeans)\r
{\r
- return new List<DenoisePreset> { DenoisePreset.Ultralight, DenoisePreset.Light, DenoisePreset.Medium, DenoisePreset.Strong };\r
+ return new List<DenoisePreset> { DenoisePreset.Ultralight, DenoisePreset.Light, DenoisePreset.Medium, DenoisePreset.Strong, DenoisePreset.Custom };\r
} \r
}\r
\r
this.NotifyOfPropertyChange(() => this.SelectedDenoisePreset);\r
\r
// Show / Hide the Custom Control\r
- this.ShowDenoiseCustom = this.CurrentTask.Denoise == Denoise.hqdn3d && this.CurrentTask.DenoisePreset == DenoisePreset.Custom;\r
+ this.ShowDenoiseCustom = this.CurrentTask.DenoisePreset == DenoisePreset.Custom;\r
if (value != DenoisePreset.Custom) this.CustomDenoise = string.Empty;\r
this.NotifyOfPropertyChange(() => this.ShowDenoiseCustom);\r
this.NotifyOfPropertyChange(() => this.ShowDenoiseOptions);\r
{\r
get\r
{\r
- return this.SelectedDenoise == Denoise.NLMeans;\r
+ return this.SelectedDenoise == Denoise.NLMeans && this.SelectedDenoisePreset != DenoisePreset.Custom;\r
}\r
}\r
\r