/// </summary>\r
public class FiltersViewModel : ViewModelBase, IFiltersViewModel\r
{\r
+ /// <summary>\r
+ /// The is deinterlace mode.\r
+ /// </summary>\r
private bool isDeinterlaceMode;\r
\r
#region Constructors and Destructors\r
// Show / Hide the Custom Control\r
this.ShowDeinterlaceCustom = this.CurrentTask.Deinterlace == Deinterlace.Custom;\r
this.NotifyOfPropertyChange(() => this.ShowDeinterlaceCustom);\r
+\r
+ if (value != Deinterlace.Off)\r
+ {\r
+ this.IsDeinterlaceMode = true;\r
+ }\r
}\r
}\r
\r
// Show / Hide the Custom Control\r
this.ShowDecombCustom = this.CurrentTask.Decomb == Decomb.Custom;\r
this.NotifyOfPropertyChange(() => this.ShowDecombCustom);\r
+\r
+ if (value != Decomb.Off)\r
+ {\r
+ this.IsDeinterlaceMode = false;\r
+ }\r
}\r
}\r
\r