]> granicus.if.org Git - handbrake/commitdiff
WinGui:
authorsr55 <sr55.hb@outlook.com>
Fri, 21 May 2010 10:31:53 +0000 (10:31 +0000)
committersr55 <sr55.hb@outlook.com>
Fri, 21 May 2010 10:31:53 +0000 (10:31 +0000)
- Fix Bug in PresetLoader with Par Width/height mixed up.

git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3309 b64f7644-9d1e-0410-96f1-a4d463321fa5

win/C#/Functions/PresetLoader.cs

index cab771ab15e1141d1a0eb5b37e5ee5f7f01e4a19..e2762af12b51dd1cff721fcb44f28e34866f43ed 100644 (file)
@@ -141,8 +141,8 @@ namespace Handbrake.Functions
 \r
             // Custom Anamorphic Controls\r
             mainWindow.PictureSettings.updownDisplayWidth.Text = presetQuery.DisplayWidthValue.ToString();\r
-            mainWindow.PictureSettings.updownParHeight.Text = presetQuery.PixelAspectWidth.ToString();\r
-            mainWindow.PictureSettings.updownParWidth.Text = presetQuery.PixelAspectHeight.ToString();\r
+            mainWindow.PictureSettings.updownParHeight.Text = presetQuery.PixelAspectHeight.ToString();\r
+            mainWindow.PictureSettings.updownParWidth.Text = presetQuery.PixelAspectWidth.ToString();\r
             mainWindow.PictureSettings.drp_modulus.SelectedItem = presetQuery.AnamorphicModulus.ToString();\r
 \r
             #endregion\r