diff options
author | sr55 <[email protected]> | 2011-10-26 19:22:34 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-10-26 19:22:34 +0000 |
commit | 9ea0a3e96c19b22d53430a81e5cb8271bd5a1942 (patch) | |
tree | e3322c5c143ccd26cb68be0c54f88dd31cc0f3b0 /win/CS/Controls/AudioPanel.Designer.cs | |
parent | 9539f510c2a59b4e220f2c5e3e09bfc53cf1742b (diff) |
WinGui: Some behavioural fixes to the audio panel controls.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4323 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Controls/AudioPanel.Designer.cs')
-rw-r--r-- | win/CS/Controls/AudioPanel.Designer.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/win/CS/Controls/AudioPanel.Designer.cs b/win/CS/Controls/AudioPanel.Designer.cs index 09d35c910..7f3c58fc9 100644 --- a/win/CS/Controls/AudioPanel.Designer.cs +++ b/win/CS/Controls/AudioPanel.Designer.cs @@ -157,6 +157,7 @@ namespace Handbrake.Controls // drp_audioMix
//
this.drp_audioMix.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.drp_audioMix.Enabled = false;
this.drp_audioMix.FormattingEnabled = true;
this.drp_audioMix.Items.AddRange(new object[] {
"Automatic",
@@ -189,6 +190,7 @@ namespace Handbrake.Controls // drp_audioBitrate
//
this.drp_audioBitrate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.drp_audioBitrate.Enabled = false;
this.drp_audioBitrate.FormattingEnabled = true;
this.drp_audioBitrate.Items.AddRange(new object[] {
"32",
@@ -211,6 +213,7 @@ namespace Handbrake.Controls // drp_audioSample
//
this.drp_audioSample.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.drp_audioSample.Enabled = false;
this.drp_audioSample.FormattingEnabled = true;
this.drp_audioSample.Items.AddRange(new object[] {
"Auto",
@@ -336,6 +339,7 @@ namespace Handbrake.Controls // btn_AdvancedAudio
//
this.btn_AdvancedAudio.BackColor = System.Drawing.Color.Transparent;
+ this.btn_AdvancedAudio.Enabled = false;
this.btn_AdvancedAudio.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btn_AdvancedAudio.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
this.btn_AdvancedAudio.Location = new System.Drawing.Point(607, 65);
|