diff options
author | sr55 <[email protected]> | 2008-12-28 17:25:07 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-12-28 17:25:07 +0000 |
commit | b67e367457cdb3aae4dedce90beeea6804b2aa32 (patch) | |
tree | 6ad375bfa9c8a5d1aab9d4b84a1e1cd8e8e8e31a /win/C#/frmOptions.cs | |
parent | 3591fac86e6baa417f1b059698092ba6739aecc7 (diff) |
WinGui:
- Option to hide the Query Editor tab.
- Fixed small issue with remove button on the new audio tab. Would error if no track was selected.
- Fixed an issue with the preset bar where selecting an already selected preset wouldn't reset the GUI settings for that preset.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2047 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r-- | win/C#/frmOptions.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs index 32c63b23a..e31e41abf 100644 --- a/win/C#/frmOptions.cs +++ b/win/C#/frmOptions.cs @@ -114,6 +114,9 @@ namespace Handbrake if (Properties.Settings.Default.drive_detection == "Checked")
btn_drive_detect.CheckState = CheckState.Checked;
+ if (Properties.Settings.Default.QueryEditorTab == "Checked")
+ check_queryEditorTab.CheckState = CheckState.Checked;
+
// Enable snapshot updating
if (Properties.Settings.Default.MainWindowMinimize == "Checked")
check_mainMinimize.CheckState = CheckState.Checked;
@@ -251,6 +254,11 @@ namespace Handbrake Properties.Settings.Default.MainWindowMinimize = check_mainMinimize.CheckState.ToString();
}
+ private void check_queryEditorTab_CheckedChanged(object sender, EventArgs e)
+ {
+ Properties.Settings.Default.QueryEditorTab = check_queryEditorTab.CheckState.ToString();
+ }
+
private void check_snapshot_CheckedChanged(object sender, EventArgs e)
{
Properties.Settings.Default.checkSnapshot = check_snapshot.CheckState.ToString();
|