diff options
author | sr55 <[email protected]> | 2009-02-01 19:58:44 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-02-01 19:58:44 +0000 |
commit | 246422f2c71fc79decf7c15bbae144214bfdf8ba (patch) | |
tree | 68aecf860f65e12ed456cd6257ede73486e30deb /win | |
parent | 3bce6b3eab0b3bd811c2f22eaed448765e074023 (diff) |
WinGui:
- Remove old restriction on loose anamorphic.
- Fix an issue with the new audio panel which would allow incompatible audio codecs with containers.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2113 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/C#/frmMain.cs | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 00e5515c4..4cad19528 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -1029,8 +1029,6 @@ namespace Handbrake check_iPodAtom.Enabled = true;
else
check_iPodAtom.Enabled = false;
- if (!drp_anamorphic.Items.Contains("Loose"))
- drp_anamorphic.Items.Add("Loose");
}
else
{
@@ -1040,8 +1038,6 @@ namespace Handbrake rtf_x264Query.Text = "";
check_iPodAtom.Enabled = false;
check_iPodAtom.Checked = false;
- if (drp_anamorphic.Items.Count == 3)
- drp_anamorphic.Items.RemoveAt(2);
}
}
@@ -1771,6 +1767,13 @@ namespace Handbrake if (drp_audenc_1.Text == string.Empty)
drp_audenc_1.SelectedIndex = 0;
}
+
+ // Make sure the table is updated with new audio codecs
+ foreach (ListViewItem row in lv_audioList.Items)
+ {
+ if (!drp_audenc_1.Items.Contains(row.SubItems[1].Text))
+ row.SubItems[1].Text = drp_audenc_1.Items[0].ToString();
+ }
}
private void setVideoByContainer(String path)
{
|