diff options
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r-- | win/C#/frmOptions.cs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs index 61fd90bde..fc3d55a0a 100644 --- a/win/C#/frmOptions.cs +++ b/win/C#/frmOptions.cs @@ -10,14 +10,12 @@ namespace Handbrake {
public partial class frmOptions : Form
{
+ /// <summary>
+ /// When the form loads, Initialise all the setting components with their correct values
+ /// </summary>
public frmOptions()
{
InitializeComponent();
- }
-
- // When the form loads, Initialise all the setting components with their correct values
- private void frmOptions_Load(object sender, EventArgs e)
- {
if (Properties.Settings.Default.updateStatus == "Checked")
{
check_updateCheck.CheckState = CheckState.Checked;
@@ -42,7 +40,6 @@ namespace Handbrake }
}
-
private void check_updateCheck_CheckedChanged(object sender, EventArgs e)
{
Properties.Settings.Default.updateStatus = check_updateCheck.CheckState.ToString();
|