diff options
author | sr55 <[email protected]> | 2018-02-14 21:11:29 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2018-02-14 21:11:29 +0000 |
commit | 2fbb2ed1e11eb561cd6538032235d5a336f37259 (patch) | |
tree | 03120a3a3e0700c53d88963eac89d9753485e15f /win | |
parent | 6b4325cfd832590c54863c688262e4a923717486 (diff) |
WinGui: Remove debug option that's causing aspect ratio issues on the Picture settings view. #1180
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs index 4474938c5..a959f225e 100644 --- a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs @@ -907,7 +907,7 @@ namespace HandBrakeWPF.ViewModels ParH = this.ParHeight,
MaxWidth = this.MaxWidth,
MaxHeight = this.MaxHeight,
- KeepDisplayAspect = false, //this.MaintainAspectRatio,
+ KeepDisplayAspect = this.MaintainAspectRatio,
AnamorphicMode = this.SelectedAnamorphicMode,
Crop = new Cropping(this.CropTop, this.CropBottom, this.CropLeft, this.CropRight),
};
|