diff options
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs | 6 |
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:
|