From: sr55 Date: Thu, 28 Aug 2008 18:39:54 +0000 (+0000) Subject: WinGui: X-Git-Tag: 0.9.3~288 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a2760eb9be56f4117334f3987672e9d5bcb4741;p=handbrake WinGui: - Fixed Custom Crop bug as per http://forum.handbrake.fr/viewtopic.php?f=12&t=6963 git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1656 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/win/C#/Functions/Common.cs b/win/C#/Functions/Common.cs index 02e7628ca..6a61ae735 100644 --- a/win/C#/Functions/Common.cs +++ b/win/C#/Functions/Common.cs @@ -518,10 +518,10 @@ namespace Handbrake.Functions if (mainWindow.text_height.Text != "") query += " -l " + mainWindow.text_height.Text; - string cropTop = ""; - string cropBottom = ""; - string cropLeft = ""; - string cropRight = ""; + string cropTop = mainWindow.text_top.Text; + string cropBottom = mainWindow.text_bottom.Text; + string cropLeft = mainWindow.text_left.Text; + string cropRight = mainWindow.text_right.Text; if (mainWindow.drp_crop.Text == "No Crop") query += " --crop 0:0:0:0 ";