diff options
Diffstat (limited to 'win/C#/Controls/x264Panel.cs')
-rw-r--r-- | win/C#/Controls/x264Panel.cs | 6 |
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; }
}
|