From 02bb7c53bf68e0ba64ccd221b3435b444abb744b Mon Sep 17 00:00:00 2001 From: sr55 Date: Tue, 12 Dec 2017 21:38:59 +0000 Subject: WinGui: Initial Activation of the "modified" preset detection code. (Audio/Subtitle Tabs still to be done) --- win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs') diff --git a/win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs index 5409e7502..248ff157d 100644 --- a/win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs @@ -202,6 +202,7 @@ namespace HandBrakeWPF.ViewModels this.SetExtension(string.Format(".{0}", this.Task.OutputFormat.ToString().ToLower())); this.OnOutputFormatChanged(new OutputFormatChangedEventArgs(null)); + this.OnTabStatusChanged(null); } } } @@ -239,6 +240,7 @@ namespace HandBrakeWPF.ViewModels } this.Task.OptimizeMP4 = value; this.NotifyOfPropertyChange(() => this.OptimizeMP4); + this.OnTabStatusChanged(null); } } @@ -259,6 +261,7 @@ namespace HandBrakeWPF.ViewModels } this.Task.IPod5GSupport = value; this.NotifyOfPropertyChange(() => this.IPod5GSupport); + this.OnTabStatusChanged(null); } } @@ -276,6 +279,7 @@ namespace HandBrakeWPF.ViewModels } this.Task.AlignAVStart = value; this.NotifyOfPropertyChange(() => this.AlignAVStart); + this.OnTabStatusChanged(null); } } -- cgit v1.2.3