diff options
author | sr55 <[email protected]> | 2009-07-22 19:39:38 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-07-22 19:39:38 +0000 |
commit | c20851de01a73ec1148207b858d7fe79ce7c98a5 (patch) | |
tree | 352c3cb9dbc7800df4153082fd98d65607de42da /win | |
parent | c88824947aa44722bdafa88552e2e9ba4c560743 (diff) |
WinGui:
- Fix a bug introduced in the last PictureSettings check-in. Width text box would be 0 if strict anamorphic was selected after a scan had completed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2725 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/C#/Controls/PictureSettings.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win/C#/Controls/PictureSettings.cs b/win/C#/Controls/PictureSettings.cs index 2ad34a4d5..ed9b4474e 100644 --- a/win/C#/Controls/PictureSettings.cs +++ b/win/C#/Controls/PictureSettings.cs @@ -57,6 +57,7 @@ namespace Handbrake.Controls }
else
{
+ text_width.Value = _SourceTitle.Resolution.Width;
text_height.Value = _SourceTitle.Resolution.Height - (int)crop_top.Value - (int)crop_bottom.Value;
labelDisplaySize.Text = calculateAnamorphicSizes().Width + "x" + calculateAnamorphicSizes().Height;
}
|