summaryrefslogtreecommitdiffstats
path: root/win/C#/Controls
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-03-05 21:18:03 +0000
committersr55 <[email protected]>2010-03-05 21:18:03 +0000
commit2366449c40bc1497e736708ba531a9cd7fdd0f70 (patch)
tree17bd6e480adcf73405800ce4330281daaf6a8372 /win/C#/Controls
parent2db47e656107d0adf96139d3f2ad6fcf71f20e6a (diff)
WinGui:
- Attempt to stop the autogen code from adding extra -x to the x264 query. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3149 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls')
-rw-r--r--win/C#/Controls/x264Panel.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/win/C#/Controls/x264Panel.cs b/win/C#/Controls/x264Panel.cs
index a33879632..59ed2c6ab 100644
--- a/win/C#/Controls/x264Panel.cs
+++ b/win/C#/Controls/x264Panel.cs
@@ -35,7 +35,11 @@ namespace Handbrake.Controls
/// </summary>
public string X264Query
{
- get { return " -x " + rtf_x264Query.Text; }
+ get
+ {
+ string query = " -x " + rtf_x264Query.Text;
+ return query;
+ }
set { rtf_x264Query.Text = value; }
}