summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2016-10-29 20:06:25 +0100
committersr55 <[email protected]>2016-10-29 20:06:25 +0100
commitf8ccfd84580f4de1d1b2d93d8ffe0cf99788ef29 (patch)
tree69796c0316de70307d469aa48ab053ebe11c18c6 /win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
parent8ee33470cef092a8710699a7d493c20a179d96b6 (diff)
WinGui: Replace Strict Anamorphic with Automatic.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
index 2d7267756..ed4282566 100644
--- a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
@@ -146,7 +146,7 @@ namespace HandBrakeWPF.ViewModels
{
get
{
- return new List<Anamorphic> { Anamorphic.None, Anamorphic.Strict, Anamorphic.Loose, Anamorphic.Custom };
+ return new List<Anamorphic> { Anamorphic.None, Anamorphic.Automatic, Anamorphic.Loose, Anamorphic.Custom };
}
}
@@ -972,7 +972,7 @@ namespace HandBrakeWPF.ViewModels
this.ShowDisplaySize = true;
this.ShowKeepAR = true;
break;
- case Anamorphic.Strict:
+ case Anamorphic.Automatic:
this.WidthControlEnabled = false;
this.HeightControlEnabled = false;
this.ShowCustomAnamorphicControls = false;