summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-10-26 21:38:04 +0000
committersr55 <[email protected]>2007-10-26 21:38:04 +0000
commite44b0fa6cf44948a3f20446515fe4d930eed6f77 (patch)
tree0e74e4d502992dbd2ac1a180e9fae5b5e6f9da68 /win/C#/frmOptions.cs
parent592c7665ccf092313449860dded33b85e1735bfc (diff)
WinGui:
- Reversed the functionality of the show/hide presets button. By default presets always show now. - Re-added file open / save options and removed presets open/save buttons. Was confusing users. - Added the ability to modify items on the queue. - All Presets Updated. - Queue Threading changed in an attempt to avoid Windows loosing track of it. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1039 b64f7644-9d1e-0410-96f1-a4d463321fa5
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();
}