diff options
author | sr55 <[email protected]> | 2016-04-29 21:39:23 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2016-04-29 21:39:23 +0100 |
commit | a1a3932ea4307f55cf2cac003e40fe202b765818 (patch) | |
tree | a47a702b10d64c224b64acc5e80190f5af0e2b57 /win/CS/HandBrakeWPF | |
parent | 9a4fab66aafa09d5c0d5f07449179620cf5514a2 (diff) |
WinGui: Actually check in the fix for #158
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index 8a02d9e69..39f199892 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -941,7 +941,6 @@ namespace HandBrakeWPF.ViewModels this.NotifyOfPropertyChange(() => SelectedOutputFormat);
this.NotifyOfPropertyChange(() => this.CurrentTask.OutputFormat);
this.NotifyOfPropertyChange(() => IsMkv);
- this.NotifyOfPropertyChange(() => this.OptimizeMP4);
this.SetExtension(string.Format(".{0}", this.selectedOutputFormat.ToString().ToLower()));
this.VideoViewModel.RefreshTask();
@@ -2050,6 +2049,9 @@ namespace HandBrakeWPF.ViewModels this.IsMkv = true;
this.CurrentTask.OptimizeMP4 = false;
this.CurrentTask.IPod5GSupport = false;
+
+ this.NotifyOfPropertyChange(() => this.OptimizeMP4);
+ this.NotifyOfPropertyChange(() => this.IPod5GSupport);
}
// Update The browse file extension display
|