summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2017-12-12 21:38:59 +0000
committersr55 <[email protected]>2017-12-12 21:38:59 +0000
commit02bb7c53bf68e0ba64ccd221b3435b444abb744b (patch)
treedfae39db91e22795d26db21f2bc0e250109505cb /win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs
parent462d4aa8d369266bbc8204148c6da85930893790 (diff)
WinGui: Initial Activation of the "modified" preset detection code. (Audio/Subtitle Tabs still to be done)
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs4
1 files changed, 4 insertions, 0 deletions
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);
}
}