summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs20
1 files changed, 8 insertions, 12 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index e277a853e..06bc526f4 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -51,9 +51,6 @@ namespace Handbrake
// Now load the users default if required. (Will overide the above setting)
loadUserDefaults();
- // Display the quick start window if required.
- quickStart();
-
// Enable or disable tooltips
tooltip();
@@ -215,15 +212,6 @@ namespace Handbrake
}
}
- private void quickStart()
- {
- if ((Properties.Settings.Default.QuickStartWindow == "Checked") || (Properties.Settings.Default.QuickStartWindow == ""))
- {
- frmQuickStart quickstart = new frmQuickStart();
- quickstart.ShowDialog();
- }
- }
-
private void tooltip()
{
if (Properties.Settings.Default.tooltipEnable == "Checked")
@@ -324,6 +312,13 @@ namespace Handbrake
#region Help Menu
+
+ private void mnu_quickStart_Click(object sender, EventArgs e)
+ {
+ Form QuickStart = new frmQuickStart();
+ QuickStart.ShowDialog();
+ }
+
private void mnu_wiki_Click(object sender, EventArgs e)
{
Process.Start("http://handbrake.m0k.org/trac");
@@ -1313,6 +1308,7 @@ namespace Handbrake
CheckCRF.Enabled = false;
check_turbo.Enabled = false;
h264Tab.Enabled = false;
+ rtf_h264advanced.Text = "";
}
else
{