summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
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 ";