diff options
author | sr55 <[email protected]> | 2009-12-26 22:47:50 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-12-26 22:47:50 +0000 |
commit | 3d294a01c523f1172e5dbd2a2923ea176e542729 (patch) | |
tree | 88fab80a4ba0730c93fd92840b9b0c370049fc97 /win/C#/Controls/AudioPanel.cs | |
parent | 4a02ac01cd52134c1c613bd73d404db8dc3c237b (diff) |
WinGui:
- Select the first audio track instead of "Automatic" in the Audio Track Dropdown Menu.
- Cleaned up some subtitle code.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3046 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls/AudioPanel.cs')
-rw-r--r-- | win/C#/Controls/AudioPanel.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/Controls/AudioPanel.cs b/win/C#/Controls/AudioPanel.cs index 2c2028b97..867dbbabf 100644 --- a/win/C#/Controls/AudioPanel.cs +++ b/win/C#/Controls/AudioPanel.cs @@ -265,7 +265,7 @@ namespace Handbrake.Controls // Handle Native Language and "Dub Foreign language audio" and "Use Foreign language audio and Subtitles" Options
if (Properties.Settings.Default.NativeLanguage == "Any")
- drp_audioTrack.SelectedIndex = 0;
+ drp_audioTrack.SelectedIndex = drp_audioTrack.Items.Count >= 3 ? 2 : 0;
else
{
if (Properties.Settings.Default.DubAudio) // "Dub Foreign language audio"
@@ -294,7 +294,7 @@ namespace Handbrake.Controls }
}
else
- drp_audioTrack.SelectedIndex = 0; // "Use Foreign language audio and Subtitles"
+ drp_audioTrack.SelectedIndex = drp_audioTrack.Items.Count >= 3 ? 2 : 0; // "Use Foreign language audio and Subtitles"
}
drp_audioMix.SelectedIndex = 0;
}
|