diff options
author | sr55 <[email protected]> | 2009-08-28 21:23:01 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-08-28 21:23:01 +0000 |
commit | c2863b8a7b35433f9bbd7b16652f79d42b45ab57 (patch) | |
tree | f7a2d49a4014795d3a0aef224f71d362374cc697 | |
parent | 3ef0219c4c3113616869f9ff2395b65b947aef7a (diff) |
WinGui:
- Wrap double quotes around srt file name / location.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2785 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | win/C#/Functions/QueryGenerator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/QueryGenerator.cs b/win/C#/Functions/QueryGenerator.cs index 198be2d43..58e59cd70 100644 --- a/win/C#/Functions/QueryGenerator.cs +++ b/win/C#/Functions/QueryGenerator.cs @@ -461,7 +461,7 @@ namespace Handbrake.Functions if (srtFile != "") // SRTs
{
- query += " --srt-file " + srtFile;
+ query += " --srt-file " + "\"" + srtFile + "\"";
if (srtCodeset != "")
query += " --srt-codeset " + srtCodeset;
|