summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-07-27 15:32:07 +0000
committersr55 <[email protected]>2013-07-27 15:32:07 +0000
commitb41636e8ff8b02ccddba2576e8bca89b14c25a1b (patch)
tree9de9a509c66efad0bcbcbaad5f00eca351ad55d2
parenta9c36a33c315fb5ff38506a2fe66eab045787274 (diff)
WinGui: Fixed Anamorphic mode was not being saved when adding a preset with no picture sizes.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5672 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
index 743a9c561..6329accf8 100644
--- a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
@@ -654,6 +654,7 @@ namespace HandBrakeWPF.ViewModels
// Do Nothing except reset the Max Width/Height
this.MaxWidth = this.sourceResolution.Width;
this.MaxHeight = this.sourceResolution.Height;
+ this.SelectedAnamorphicMode = preset.Task.Anamorphic;
break;
}