From: sr55 Date: Sat, 27 Jul 2013 15:32:07 +0000 (+0000) Subject: WinGui: Fixed Anamorphic mode was not being saved when adding a preset with no pictur... X-Git-Tag: 0.10.0~817 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b41636e8ff8b02ccddba2576e8bca89b14c25a1b;p=handbrake 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 --- 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; }