diff options
author | sr55 <[email protected]> | 2011-08-27 21:50:01 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-08-27 21:50:01 +0000 |
commit | 915363d852a04538d70e69b8efada8f6a7603e28 (patch) | |
tree | f8f31d501bca0651d1108bb4f5dd48348694d3ef /win/CS/Functions/PresetLoader.cs | |
parent | 3e32e57c216db0b6acf6166b9f23f2ede3aece30 (diff) |
WinGui: Broke the preset loader in the last commit. Now Fixed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4195 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Functions/PresetLoader.cs')
-rw-r--r-- | win/CS/Functions/PresetLoader.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/Functions/PresetLoader.cs b/win/CS/Functions/PresetLoader.cs index 69acda4b2..e78754925 100644 --- a/win/CS/Functions/PresetLoader.cs +++ b/win/CS/Functions/PresetLoader.cs @@ -96,7 +96,7 @@ namespace Handbrake.Functions #region Picture
mainWindow.PictureSettings.check_autoCrop.Checked = true;
- if (preset.CropSettings)
+ if (preset.CropSettings && presetQuery.HasCropping)
{
mainWindow.PictureSettings.check_customCrop.Checked = true;
mainWindow.PictureSettings.crop_top.Value = presetQuery.Cropping.Top;
|