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.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index fe54d22a5..5451d6f9b 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -44,7 +44,7 @@ namespace Handbrake
check_tooltip.CheckState = CheckState.Checked;
}
- if (Properties.Settings.Default.showPresets == "Checked")
+ if (Properties.Settings.Default.hidePresets == "Checked")
{
check_showPreset.CheckState = CheckState.Checked;
}
@@ -98,7 +98,7 @@ namespace Handbrake
private void check_showPreset_CheckedChanged(object sender, EventArgs e)
{
- Properties.Settings.Default.showPresets = check_showPreset.CheckState.ToString();
+ Properties.Settings.Default.hidePresets = check_showPreset.CheckState.ToString();
}