diff options
author | sr55 <[email protected]> | 2011-07-31 21:16:26 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-07-31 21:16:26 +0000 |
commit | 1074fcda1a9bc39939c9a2bd3eb346b621b4da19 (patch) | |
tree | 1488b9a523d1d4e36061e17fefa01ebb7fe4a656 /win/CS/frmMain.cs | |
parent | 7f0a86bd7811b82cb5b086ea960ef7ccc054d3bd (diff) |
WinGui: Temporary fix for the audio panel not accepting preset audio tracks due to the Automatic audio options overriding it. This is going to require a bit of thought for a full fix but should restore previous functionality.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4146 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/frmMain.cs')
-rw-r--r-- | win/CS/frmMain.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/frmMain.cs b/win/CS/frmMain.cs index 031a632b5..bcdd6aaec 100644 --- a/win/CS/frmMain.cs +++ b/win/CS/frmMain.cs @@ -384,6 +384,7 @@ namespace Handbrake }
#endregion
+
#region Tools Menu
/// <summary>
@@ -1471,7 +1472,7 @@ namespace Handbrake drop_chapterFinish.Text = drop_chapterFinish.Items[drop_chapterFinish.Items.Count - 1].ToString();
// Populate the Audio Channels Dropdown
- AudioSettings.SetTrackListFromPreset(selectedTitle, this.currentlySelectedPreset);
+ AudioSettings.SetTrackListAfterTitleChange(selectedTitle, this.currentlySelectedPreset);
// Populate the Subtitles dropdown
Subtitles.SetSubtitleTrackAuto(selectedTitle.Subtitles.ToArray());
|