summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-08-28 18:39:54 +0000
committersr55 <[email protected]>2008-08-28 18:39:54 +0000
commit4a2760eb9be56f4117334f3987672e9d5bcb4741 (patch)
tree3662f075917399be1cccd71a727d18cc3eeeebf2 /win
parentc1f31822b78859305328750ca0adcd0b1699f690 (diff)
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
Diffstat (limited to 'win')
-rw-r--r--win/C#/Functions/Common.cs8
1 files changed, 4 insertions, 4 deletions
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 ";