diff options
author | sr55 <[email protected]> | 2011-08-01 18:58:19 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-08-01 18:58:19 +0000 |
commit | 09b7bc722aa7fe590708285bc1a1f55fa177f671 (patch) | |
tree | e889cad23dc1cf93a3335e3df36d099f8d0cdd47 /win/CS/Controls | |
parent | dad8255c86fd6f00a3ff7ce6416ccb10156d7356 (diff) |
WinGui: Add a warning to the "Audio and Subtitles" tab to notify people that automatic audio settings will override those stored in presets.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4151 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Controls')
-rw-r--r-- | win/CS/Controls/AudioPanel.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/win/CS/Controls/AudioPanel.cs b/win/CS/Controls/AudioPanel.cs index a3fb2889c..3e912579b 100644 --- a/win/CS/Controls/AudioPanel.cs +++ b/win/CS/Controls/AudioPanel.cs @@ -576,6 +576,7 @@ namespace Handbrake.Controls }
// If the Native Language is not set. Just set Track information in each output track.
+ // Presets have control over audio selected
if (Properties.Settings.Default.NativeLanguage == "Any")
{
drp_audioTrack.SelectedIndex = 0;
@@ -586,6 +587,7 @@ namespace Handbrake.Controls track.ScannedTrack = this.drp_audioTrack.SelectedItem as Audio;
}
}
+
return;
}
@@ -602,9 +604,6 @@ namespace Handbrake.Controls // New DUB Settings
int mode = Properties.Settings.Default.DubModeAudio;
- if (Properties.Settings.Default.NativeLanguage == "Any")
- mode = 2;
-
// Native Language is not 'Any', so initialising the Language Dictionary
if (mode >= 3)
{
|