summaryrefslogtreecommitdiffstats
path: root/win/CS/Controls
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-03-24 16:17:04 +0000
committersr55 <[email protected]>2012-03-24 16:17:04 +0000
commit1befa4f1a72a9e8b0277b4ff04b0200dd884f6bc (patch)
treeda3b0dbfd3c474dc8075b569a9d688051c70ca91 /win/CS/Controls
parent1732654a808c3b0326dd475217abbbe6908cc015 (diff)
WinGui: (WPF) Fixes to the Audio and Subtitle panels. Add pdb's to installer.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4532 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Controls')
-rw-r--r--win/CS/Controls/AudioPanel.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/win/CS/Controls/AudioPanel.cs b/win/CS/Controls/AudioPanel.cs
index 531ebb781..4eb01fba2 100644
--- a/win/CS/Controls/AudioPanel.cs
+++ b/win/CS/Controls/AudioPanel.cs
@@ -1230,6 +1230,7 @@ namespace Handbrake.Controls
/// </param>
private void autoPassthru_CheckedChanged(object sender, EventArgs e)
{
+ this.PassthruSettings.IsEnabled = true;
if (sender == this.check_mp3)
{
this.PassthruSettings.AudioAllowMP3Pass = this.check_mp3.Checked;
@@ -1267,6 +1268,7 @@ namespace Handbrake.Controls
/// </param>
private void drp_passthruFallback_SelectedIndexChanged(object sender, EventArgs e)
{
+ this.PassthruSettings.IsEnabled = true;
this.PassthruSettings.AudioEncoderFallback =
EnumHelper<AudioEncoder>.GetValue(drp_passthruFallback.SelectedItem.ToString());
}