summaryrefslogtreecommitdiffstats
path: root/win/CS/Controls
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-02-05 15:13:36 +0000
committersr55 <[email protected]>2012-02-05 15:13:36 +0000
commit3036d09839b774caba47f4a325f83adac7ba1b02 (patch)
treecab7e7ccf6d736ac5ebfca8031101d388f453861 /win/CS/Controls
parent53e2efcc66a556b2e3b7788a2152d6ed9a033f1b (diff)
WinGui: Fixes to the preset system and plist exporter. (Missing keys)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4438 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Controls')
-rw-r--r--win/CS/Controls/AudioPanel.Designer.cs2
-rw-r--r--win/CS/Controls/AudioPanel.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/Controls/AudioPanel.Designer.cs b/win/CS/Controls/AudioPanel.Designer.cs
index a9c8e56e1..3a4653853 100644
--- a/win/CS/Controls/AudioPanel.Designer.cs
+++ b/win/CS/Controls/AudioPanel.Designer.cs
@@ -176,7 +176,7 @@ namespace Handbrake.Controls
"Stereo",
"Dolby Surround",
"Dolby Pro Logic II",
- "6 Channel Discrete"});
+ "6-channel discrete"});
this.drp_audioMix.Location = new System.Drawing.Point(309, 66);
this.drp_audioMix.Name = "drp_audioMix";
this.drp_audioMix.Size = new System.Drawing.Size(147, 21);
diff --git a/win/CS/Controls/AudioPanel.cs b/win/CS/Controls/AudioPanel.cs
index 7ce9c318b..1d2ed8c41 100644
--- a/win/CS/Controls/AudioPanel.cs
+++ b/win/CS/Controls/AudioPanel.cs
@@ -977,7 +977,7 @@ namespace Handbrake.Controls
drp_audioMix.Items.Add("Stereo");
drp_audioMix.Items.Add("Dolby Surround");
drp_audioMix.Items.Add("Dolby Pro Logic II");
- drp_audioMix.Items.Add("6 Channel Discrete");
+ drp_audioMix.Items.Add("6-channel discrete");
drp_audioMix.Items.Add(None);
switch (drp_audioEncoder.Text)
@@ -988,7 +988,7 @@ namespace Handbrake.Controls
drp_audioMix.SelectedItem = currentMixdown ?? "Dolby Pro Logic II";
break;
case "MP3 (lame)":
- drp_audioMix.Items.Remove("6 Channel Discrete");
+ drp_audioMix.Items.Remove("6-channel discrete");
drp_audioMix.Items.Remove(None);
drp_audioMix.SelectedItem = currentMixdown ?? "Dolby Pro Logic II";
break;