diff options
author | sr55 <[email protected]> | 2010-03-10 21:11:07 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-03-10 21:11:07 +0000 |
commit | 22586c9fbb1b75b66b12e8bdb231cd570813bdc2 (patch) | |
tree | 6d87d3b78edc849b29e6e929976d39d58ce25d32 /win/C#/Controls | |
parent | 4f57fc45d8d98e44b10a8c22226899b7365ad293 (diff) |
WinGui:
- Revert extra added -x and hopefully fix the cause of it being autogend
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3157 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls')
-rw-r--r-- | win/C#/Controls/x264Panel.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/win/C#/Controls/x264Panel.cs b/win/C#/Controls/x264Panel.cs index 59ed2c6ab..bc715f46b 100644 --- a/win/C#/Controls/x264Panel.cs +++ b/win/C#/Controls/x264Panel.cs @@ -37,8 +37,7 @@ namespace Handbrake.Controls {
get
{
- string query = " -x " + rtf_x264Query.Text;
- return query;
+ return rtf_x264Query.Text;
}
set { rtf_x264Query.Text = value; }
}
|