summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-10-05 19:29:54 +0000
committersr55 <[email protected]>2007-10-05 19:29:54 +0000
commitdb9da86bc851eb622245646281a69cdb0f4a4fa8 (patch)
tree9c00a4a7606aa7fc6535bf705f22119b47ca2c12 /win/C#/frmMain.cs
parent587c58553ccb44f5a01a72e0889a8e131cb678ea (diff)
WinGui:
- Fixed a very small bug with the h264 options bug. 1 line fix. - Quick Start tips added to the help menu and removed from app startup. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1005 b64f7644-9d1e-0410-96f1-a4d463321fa5
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
{