summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index b0bab6806..a85792400 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -37,6 +37,11 @@ namespace Handbrake
{
check_guiDebug.CheckState = CheckState.Checked;
}
+
+ if (Properties.Settings.Default.tooltipEnable == "Checked")
+ {
+ check_tooltip.CheckState = CheckState.Checked;
+ }
}
private void check_updateCheck_CheckedChanged(object sender, EventArgs e)
@@ -75,6 +80,11 @@ namespace Handbrake
Properties.Settings.Default.GuiDebug = check_guiDebug.CheckState.ToString();
}
+ private void check_tooltip_CheckedChanged(object sender, EventArgs e)
+ {
+ Properties.Settings.Default.tooltipEnable = check_tooltip.CheckState.ToString();
+ }
+
}
} \ No newline at end of file