From: sr55 Date: Wed, 22 Jul 2009 19:39:38 +0000 (+0000) Subject: WinGui: X-Git-Tag: 0.9.4~237 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c20851de01a73ec1148207b858d7fe79ce7c98a5;p=handbrake 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 --- 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; }