diff options
author | sr55 <[email protected]> | 2009-07-18 11:21:42 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-07-18 11:21:42 +0000 |
commit | 9148e415545807b62354fd26cb7e640fb8d3ee7e (patch) | |
tree | 5f4c975f9f0af4e0ac4d1c91d5d8d4da77b260f5 /win/C#/Controls/Subtitles.cs | |
parent | 5a1dbbd9e19859d8de91c1e99ecb6577929deed2 (diff) |
WinGui:
- Added Subtitles support for the last check-in.
- Fixed a few bugs in the new Audio handling code.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2711 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls/Subtitles.cs')
-rw-r--r-- | win/C#/Controls/Subtitles.cs | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/win/C#/Controls/Subtitles.cs b/win/C#/Controls/Subtitles.cs index 9036a6c72..e4142bd44 100644 --- a/win/C#/Controls/Subtitles.cs +++ b/win/C#/Controls/Subtitles.cs @@ -24,7 +24,23 @@ namespace Handbrake.Controls private int FileContainer;
public void setSubtitleTrackAuto()
{
- //TODO
+ // Handle Native Language and "Dub Foreign language audio" and "Use Foreign language audio and Subtitles" Options
+ if (Properties.Settings.Default.NativeLanguage != "Any")
+ {
+ if (!Properties.Settings.Default.DubAudio) // We need to add a subtitle track if this is false.
+ {
+ int i = 0;
+ foreach (object item in drp_subtitleTracks.Items)
+ {
+ if (item.ToString().Contains(Properties.Settings.Default.NativeLanguage))
+ drp_subtitleTracks.SelectedIndex = i;
+
+ i++;
+ }
+
+ btn_addSubTrack_Click(this, new EventArgs());
+ }
+ }
}
public void setContainer(int value)
{
|