diff options
author | sr55 <[email protected]> | 2010-09-14 18:23:53 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-09-14 18:23:53 +0000 |
commit | 4043695d61478681fa2be0f19476321bf94cdcb3 (patch) | |
tree | a670656e4b39d5258bc143e283232cfd8191fd5c /win/C#/Controls | |
parent | 50a9b814396811fc33885d70d2798a6c8c1c595e (diff) |
WinGui:
- Fix an issue with the Subtitle Forced option being set to scan instead of the track id.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3527 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls')
-rw-r--r-- | win/C#/Controls/Subtitles.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Controls/Subtitles.cs b/win/C#/Controls/Subtitles.cs index e5acf0789..0583aa802 100644 --- a/win/C#/Controls/Subtitles.cs +++ b/win/C#/Controls/Subtitles.cs @@ -114,7 +114,7 @@ namespace Handbrake.Controls trackId = tempSub[0];
if (item.Forced == "Yes")
- itemToAdd = "scan";
+ itemToAdd = trackId;
if (itemToAdd != string.Empty)
subtitleForced += subtitleForced == string.Empty ? itemToAdd : "," + itemToAdd;
|