From 85ca8ca9325e10aff5e40d96e3f0d4163f66b917 Mon Sep 17 00:00:00 2001 From: sr55 Date: Thu, 11 Jun 2009 16:55:17 +0000 Subject: 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 --- win/C#/Functions/QueryGenerator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'win/C#/Functions/QueryGenerator.cs') 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 -- cgit v1.2.3