summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-11-23 13:18:59 +0000
committersr55 <[email protected]>2007-11-23 13:18:59 +0000
commitd916aa693d36dd24e557418707d524855d1a5d24 (patch)
tree45817d680bf18f7d293e0de285fb4e57da14ecc7 /win
parentb588425780eead3ccadc5ca5eb768b2023e4e628 (diff)
WinGui:
- Fixed small bug in the query parser. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1076 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r--win/C#/Functions/QueryParser.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/QueryParser.cs b/win/C#/Functions/QueryParser.cs
index 6723420be..6c4f4f265 100644
--- a/win/C#/Functions/QueryParser.cs
+++ b/win/C#/Functions/QueryParser.cs
@@ -520,7 +520,7 @@ namespace Handbrake.Functions
Match audioChannel = Regex.Match(input, @"-a ([0-9]*)");
//H264 Tab
- Match x264 = Regex.Match(input, @"-x ([a-zA-Z0-9=:-]*)");
+ Match x264 = Regex.Match(input, @"-x ([,a-zA-Z0-9=:-]*)");
//Program Options
Match verbose = Regex.Match(input, @"-v");