summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-08-29 17:14:42 +0000
committersr55 <[email protected]>2007-08-29 17:14:42 +0000
commitc2501467f65a24f2e098b0932da4908ae430ad3c (patch)
tree1cde86d069ec3123dc4f10b2b1c66f46e03ee1e2 /win/C#/frmOptions.cs
parent8d1c8819a2695068d7999e74368bdb4401827f05 (diff)
WinGui:
- Gui debug more added to tools > options. - More exception handling added - frmReadDVD is now automatic. User no longer has to manually start scan process. - Re-enabled onwindow scan status message. Removed Message box which alerts scan status. - Few other small code tweaks. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@893 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index fc2e15207..b0bab6806 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -32,6 +32,11 @@ namespace Handbrake
{
check_verbose.CheckState = CheckState.Checked;
}
+
+ if (Properties.Settings.Default.GuiDebug == "Checked")
+ {
+ check_guiDebug.CheckState = CheckState.Checked;
+ }
}
private void check_updateCheck_CheckedChanged(object sender, EventArgs e)
@@ -64,5 +69,12 @@ namespace Handbrake
Properties.Settings.Default.Save(); // Small hack for Vista. Seems to work fine on XP without this
this.Close();
}
+
+ private void check_guiDebug_CheckedChanged(object sender, EventArgs e)
+ {
+ Properties.Settings.Default.GuiDebug = check_guiDebug.CheckState.ToString();
+ }
+
+
}
} \ No newline at end of file