summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-09-28 18:19:47 +0000
committersr55 <[email protected]>2008-09-28 18:19:47 +0000
commit1296a228affb02f0b0fa2bc7f962e5a993332082 (patch)
treeea4d2e8bce3446d47ee34776ec4c4de244e6ba93 /win/C#/frmMain.cs
parent37897e9ed4608d8f3e400d4090220f3a92a55fc3 (diff)
WinGui:
- AppcastReader.cs re-factored. Reduces number of connections to the server. - Few UI tweaks to the updater / downloader git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1781 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 88f26851c..18ba21460 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -21,14 +21,13 @@ namespace Handbrake
{
public partial class frmMain : Form
{
-
// Declarations *******************************************************
Functions.Common hb_common_func = new Functions.Common();
Functions.x264Panel x264PanelFunctions = new Functions.x264Panel();
Functions.Encode cliObj = new Functions.Encode();
Functions.Queue encodeQueue = new Functions.Queue();
- Parsing.Title selectedTitle;
Functions.Presets presetHandler = new Functions.Presets();
+ Parsing.Title selectedTitle;
internal Process hbProc;
private Parsing.DVD thisDVD;
private frmQueue queueWindow = new frmQueue();
@@ -69,7 +68,6 @@ namespace Handbrake
Properties.Settings.Default.hb_version = "0";
}
}
- Thread.Sleep(100);
// show the form, but leave disabled until preloading is complete then show the main form
this.Enabled = false;
@@ -83,7 +81,6 @@ namespace Handbrake
Application.DoEvents();
Thread updateCheckThread = new Thread(startupUpdateCheck);
updateCheckThread.Start();
- Thread.Sleep(100);
}
// Setup the GUI components
@@ -100,12 +97,10 @@ namespace Handbrake
if (Properties.Settings.Default.tooltipEnable == "Checked")
ToolTip.Active = true;
lbl_encode.Text = "";
- Thread.Sleep(100);
//Finished Loading
lblStatus.Text = "Loading Complete!";
Application.DoEvents();
- Thread.Sleep(100);
//Close the splash screen
splash.Close();