Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
inSight-mk1 committed Nov 15, 2017
1 parent 8ed7a4d commit 47aae15
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
Binary file modified ExpertVideoToolbox.v12.suo
Binary file not shown.
11 changes: 5 additions & 6 deletions ExpertVideoToolbox/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,7 @@ private void removeFileBtn_Click(object sender, EventArgs e)
private void encodeSettingCB_SelectedIndexChanged(object sender, EventArgs e)
{
foreach (taskSetting ts in settings)
{

{
if (ts != null && String.Equals(this.encodeSettingCB.Text, ts.name))
{
// Items集合中有此项值才能通过这种方法添加(DropList模式)
Expand Down Expand Up @@ -484,8 +483,8 @@ private void profileCB_SelectedIndexChanged(object sender, EventArgs e)
ComboBox comboBox = (ComboBox)sender;
if (string.Equals(comboBox.Text, "HE-AAC"))
{
this.bitrateOrQualityCB.Enabled = true;
this.codecModeCB.Enabled = true;
//this.bitrateOrQualityCB.Enabled = true;
//this.codecModeCB.Enabled = true;
this.addCodecModeItems();
this.codecModeCB.SelectedIndex = 0;
this.brORqLabel.Text = "码率";
Expand All @@ -494,8 +493,8 @@ private void profileCB_SelectedIndexChanged(object sender, EventArgs e)
}
else if (string.Equals(comboBox.Text, "LC-AAC"))
{
this.bitrateOrQualityCB.Enabled = true;
this.codecModeCB.Enabled = true;
//this.bitrateOrQualityCB.Enabled = true;
//this.codecModeCB.Enabled = true;
this.addCodecModeItems();
this.codecModeCB.SelectedIndex = 3;
this.brORqLabel.Text = "质量";
Expand Down
2 changes: 1 addition & 1 deletion ExpertVideoToolbox/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.0.9")]
[assembly: AssemblyFileVersion("0.1.0.130")]
[assembly: AssemblyFileVersion("0.1.0.143")]

0 comments on commit 47aae15

Please sign in to comment.