summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2016-10-30 20:28:40 +0000
committersr55 <[email protected]>2016-10-30 20:28:40 +0000
commit30d9b3972521b5401f18ed83b42a1aba2ed0e410 (patch)
tree074f6cce68f2635fc382c3959fe8f4f6c210cf22 /win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
parent5cc2fbbca69eaac36d85d63b09cc3af39cee2cf2 (diff)
WinGui: Make the Width/Height fields enabled for Anamorphic=Automatic
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
index ed4282566..0cd963d36 100644
--- a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
@@ -973,11 +973,11 @@ namespace HandBrakeWPF.ViewModels
this.ShowKeepAR = true;
break;
case Anamorphic.Automatic:
- this.WidthControlEnabled = false;
- this.HeightControlEnabled = false;
+ this.WidthControlEnabled = true;
+ this.HeightControlEnabled = true;
this.ShowCustomAnamorphicControls = false;
this.ShowModulus = false;
- this.ShowKeepAR = false;
+ this.ShowKeepAR = true;
break;
case Anamorphic.Loose: