diff options
author | sr55 <[email protected]> | 2009-12-24 15:04:11 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-12-24 15:04:11 +0000 |
commit | f9470483553d07bfe92219f875db643485d0ace8 (patch) | |
tree | e4b357ae3920c03f94fce38bc2e3c0c7e71a497e | |
parent | bda833a94656cb2c9340a6b489d25ef462a450e2 (diff) |
WinGui: Fix subtitle forced for foreign scan. Set it to "scan" instead of "Forced"
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3043 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 2ac1585f2..2d2bd2a81 100644 --- a/win/C#/Functions/QueryGenerator.cs +++ b/win/C#/Functions/QueryGenerator.cs @@ -429,7 +429,7 @@ namespace Handbrake.Functions trackID = tempSub[0];
if (item.Forced == "Yes")
- itemToAdd = trackID;
+ itemToAdd = "scan";
if (itemToAdd != "")
subtitleForced += subtitleForced == "" ? itemToAdd : "," + itemToAdd;
|