diff options
author | sr55 <[email protected]> | 2008-03-19 22:06:07 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-03-19 22:06:07 +0000 |
commit | 1cac31c9ed66396d3fc8a00e9fd75b5f56b000a0 (patch) | |
tree | e3438ff97c2ef2b21296f7d7b216f4cce9edb4d3 /win/C#/frmMain.cs | |
parent | 5c462338e1cd90df417aa18eeabdcb56a2169827 (diff) |
WinGui:
- Fixed a bug in the startup init sequence. H264 window needed to be generated before the presets were init'd.
- Setup the tab markers for the h264 tab
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1349 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r-- | win/C#/frmMain.cs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 03a4cb350..728cd44dd 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -71,6 +71,12 @@ namespace Handbrake Thread.Sleep(100);
}
+ //H264 Panel Loading
+ lblStatus.Text = "Loading H264 Panel";
+ Application.DoEvents();
+ setupH264Panel();
+ Thread.Sleep(100);
+
// Load the presets
// Set some defaults for the dropdown menus. Just incase the normal or user presets dont load.
lblStatus.Text = "Loading Presets Bar ...";
@@ -97,12 +103,6 @@ namespace Handbrake Thread.Sleep(100);
}
- //H264 Panel Loading
- lblStatus.Text = "Loading H264 Panel";
- Application.DoEvents();
- setupH264Panel();
- Thread.Sleep(100);
-
//Finished Loading
lblStatus.Text = "Loading Complete!";
Application.DoEvents();
@@ -1606,6 +1606,7 @@ namespace Handbrake +
// This is the END of the road ------------------------------------------------------------------------------
}
}
\ No newline at end of file |