diff options
author | sr55 <[email protected]> | 2009-06-11 16:55:17 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-06-11 16:55:17 +0000 |
commit | 85ca8ca9325e10aff5e40d96e3f0d4163f66b917 (patch) | |
tree | f945b2f3c3921d074019362b64ec1b2dfacfd6a1 /win/C#/Functions/QueryGenerator.cs | |
parent | 349af3dd20063d11293e1852bf1e37a86af50ca8 (diff) |
WinGui:
- Fixed Keep AR disabled leaded to Aspect ratio being kept for width.
- Fixed Max Width / Height display and issues in Query Generator.
- Fixed some issues in the Preset Loader.
- Crop values are always mod 2 now.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2512 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/QueryGenerator.cs')
-rw-r--r-- | win/C#/Functions/QueryGenerator.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/Functions/QueryGenerator.cs b/win/C#/Functions/QueryGenerator.cs index 16b2ace3f..595c9c175 100644 --- a/win/C#/Functions/QueryGenerator.cs +++ b/win/C#/Functions/QueryGenerator.cs @@ -118,7 +118,7 @@ namespace Handbrake.Functions #region Picture Settings Tab
// Use MaxWidth for built-in presets and width for user settings.
- if (mainWindow.maxWidth == 0)
+ if (mainWindow.pictureSettings.maxWidth == 0)
{
if (mainWindow.pictureSettings.text_width.Text != "")
@@ -132,7 +132,7 @@ namespace Handbrake.Functions }
// Use MaxHeight for built-in presets and height for user settings.
- if (mainWindow.maxHeight == 0)
+ if (mainWindow.pictureSettings.maxHeight == 0)
{
if (mainWindow.pictureSettings.text_height.Text != "")
if (mainWindow.pictureSettings.drp_anamorphic.SelectedIndex == 0 || mainWindow.pictureSettings.drp_anamorphic.SelectedIndex == 3) // Prevent usage for strict anamorphic
|