Skip to content

Commit

Permalink
Ensure transcoding options are enabled when the checkbox is enabled also
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Nov 6, 2022
1 parent 5b4cffd commit 0d4d15a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions MB_SubSonic/Windows/SettingsWindow.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions MB_SubSonic/Windows/SettingsWindow.cs
Expand Up @@ -252,5 +252,10 @@ private void btnProfileDelete_Click(object sender, EventArgs e)
PopulateFields();
}
}

private void CheckBoxTranscode_CheckedChanged(object sender, EventArgs e)
{
ComboBoxBitrate.Enabled = CheckBoxTranscode.Checked;
}
}
}

0 comments on commit 0d4d15a

Please sign in to comment.