diff options
author | sr55 <[email protected]> | 2010-01-18 13:42:08 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-01-18 13:42:08 +0000 |
commit | 8d85eac5e739572e79f846059991ad31e9cd6774 (patch) | |
tree | aa797c2bd781101299f00c71268fba60d4d613e6 /win/C#/Functions/PresetLoader.cs | |
parent | 4ce078d06a1c45c562cfd1732ffcbfd60a8e5e5a (diff) |
WinGui:
- Just some re-factored code.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3077 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/PresetLoader.cs')
-rw-r--r-- | win/C#/Functions/PresetLoader.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/C#/Functions/PresetLoader.cs b/win/C#/Functions/PresetLoader.cs index 65fe8b169..33a7c1267 100644 --- a/win/C#/Functions/PresetLoader.cs +++ b/win/C#/Functions/PresetLoader.cs @@ -96,7 +96,7 @@ namespace Handbrake.Functions mainWindow.PictureSettings.drp_anamorphic.SelectedIndex = presetQuery.AnamorphicMode;
// Keep Aspect Ration Anamorphic Setting.
- mainWindow.PictureSettings.check_KeepAR.CheckState = presetQuery.keepDisplayAsect ? CheckState.Checked : CheckState.Unchecked;
+ mainWindow.PictureSettings.check_KeepAR.CheckState = presetQuery.KeepDisplayAsect ? CheckState.Checked : CheckState.Unchecked;
// Set the Width and height as Required.
if (presetQuery.Width != 0)
@@ -127,9 +127,9 @@ namespace Handbrake.Functions mainWindow.PictureSettings.check_KeepAR.CheckState = presetQuery.Height == 0 ? CheckState.Checked : CheckState.Unchecked;
// Custom Anamorphic Controls
- mainWindow.PictureSettings.updownDisplayWidth.Text = presetQuery.displayWidthValue.ToString();
- mainWindow.PictureSettings.updownParHeight.Text = presetQuery.pixelAspectWidth.ToString();
- mainWindow.PictureSettings.updownParWidth.Text = presetQuery.pixelAspectHeight.ToString();
+ mainWindow.PictureSettings.updownDisplayWidth.Text = presetQuery.DisplayWidthValue.ToString();
+ mainWindow.PictureSettings.updownParHeight.Text = presetQuery.PixelAspectWidth.ToString();
+ mainWindow.PictureSettings.updownParWidth.Text = presetQuery.PixelAspectHeight.ToString();
mainWindow.PictureSettings.drp_modulus.SelectedItem = presetQuery.AnamorphicModulus;
#endregion
|