diff options
author | sr55 <[email protected]> | 2009-11-13 23:28:44 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-11-13 23:28:44 +0000 |
commit | bfdde46b2178ec4aea7082f81476ffafb857a7d5 (patch) | |
tree | c9f910f1a5be5c1616ddacd20d098ef5a10293d8 /win/C#/Functions/QueryGenerator.cs | |
parent | c70102d4a4c348085b2a55d24058535f38109917 (diff) |
WinGui:
- Fix --subtitle-forced, --subtitle-burn and --subtitle-default. These should have been using an = between the command and value.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2928 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/QueryGenerator.cs')
-rw-r--r-- | win/C#/Functions/QueryGenerator.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/C#/Functions/QueryGenerator.cs b/win/C#/Functions/QueryGenerator.cs index ca5262a15..cd558f6b7 100644 --- a/win/C#/Functions/QueryGenerator.cs +++ b/win/C#/Functions/QueryGenerator.cs @@ -453,11 +453,11 @@ namespace Handbrake.Functions query += " --subtitle " + subtitleTracks;
if (subtitleForced != "")
- query += " --subtitle-forced " + subtitleForced;
+ query += " --subtitle-forced=" + subtitleForced;
if (subtitleBurn != "")
- query += " --subtitle-burn " + subtitleBurn;
+ query += " --subtitle-burn=" + subtitleBurn;
if (subtitleDefault != "")
- query += " --subtitle-default " + subtitleDefault;
+ query += " --subtitle-default=" + subtitleDefault;
}
if (srtFile != "") // SRTs
|