summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2020-03-18 21:12:02 +0000
committersr55 <[email protected]>2020-03-18 21:12:11 +0000
commit9541cabae0954244b3a4dab53a99830604d97719 (patch)
tree940427d3eb54de52a566ba75996096fdd0eb54b8 /win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
parent6b89f8207db86d487203d293cec0442ad02e5b1e (diff)
WinGui: Fix preview images for "None" when using anamorphic content.
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 3ee12fa6d..c8b85d7e6 100644
--- a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
@@ -924,8 +924,8 @@ namespace HandBrakeWPF.ViewModels
Height = this.Height,
ItuPar = false,
Modulus = this.SelectedModulus,
- ParW = this.ParWidth,
- ParH = this.ParHeight,
+ ParW = this.SelectedAnamorphicMode == Anamorphic.None ? 1 : this.ParWidth,
+ ParH = this.SelectedAnamorphicMode == Anamorphic.None ? 1 : this.ParHeight,
MaxWidth = this.MaxWidth,
MaxHeight = this.MaxHeight,
KeepDisplayAspect = this.MaintainAspectRatio,