diff options
author | sr55 <[email protected]> | 2009-07-30 14:10:27 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-07-30 14:10:27 +0000 |
commit | 52cd4ffb36a980848b8223c9392491ea6c92dda0 (patch) | |
tree | ff806827ed75693a8b37b046cdb0bc62feb120de /win/C#/Controls/PictureSettings.cs | |
parent | 5b3a5c11ce43920031574c5d993e2b31ce3d6423 (diff) |
WinGui:
- Minor fix to display settings.
- Added Changelog.html to keep track of changes.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2736 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls/PictureSettings.cs')
-rw-r--r-- | win/C#/Controls/PictureSettings.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Controls/PictureSettings.cs b/win/C#/Controls/PictureSettings.cs index 7f9687883..84d397237 100644 --- a/win/C#/Controls/PictureSettings.cs +++ b/win/C#/Controls/PictureSettings.cs @@ -219,7 +219,7 @@ namespace Handbrake.Controls }
private void updownDisplayWidth_ValueChanged(object sender, EventArgs e)
{
- if (preventChangingDisplayWidth == false)
+ if (preventChangingDisplayWidth == false && check_KeepAR.CheckState == CheckState.Unchecked)
{
preventChangingCustom = true;
updownParWidth.Value = updownDisplayWidth.Value;
|