summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-07-21 15:49:36 +0000
committersr55 <[email protected]>2007-07-21 15:49:36 +0000
commit44fe349bb08b7127766a6612832a0ceb3ae0ac25 (patch)
tree322917fce812e900c6c2379785cec6527d557195 /win/C#/frmMain.cs
parenta576d53a438d92455432b5c960f4ce380007f3d7 (diff)
WinGui:
- Updated some tooltips for the main items on frmMain - Created a Debug window. - Added comments relating to a cross-thread bug with frmDvdInfo - A few other code small code tweaks git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@721 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs17
1 files changed, 15 insertions, 2 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 0983635de..96f90a660 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -20,8 +20,7 @@ namespace Handbrake
// --------------------------------------------------------------
// Some windows that require only 1 instance.
// --------------------------------------------------------------
- private frmDvdInfo dvdInfoWindow = new frmDvdInfo();
- private frmQueue queueWindow = new frmQueue();
+ private frmQueue queueWindow = new frmQueue();
// --------------------------------------------------------------
// Stuff that needs doing on startup.
@@ -30,6 +29,7 @@ namespace Handbrake
// --------------------------------------------------------------
public frmMain()
{
+
InitializeComponent();
// Set the Version number lable to the corect version.
@@ -333,9 +333,17 @@ namespace Handbrake
showQueue();
}
+ private frmDvdInfo dvdInfoWindow = new frmDvdInfo();
private void mnu_viewDVDdata_Click(object sender, EventArgs e)
{
dvdInfoWindow.Show();
+
+ // BUG *******************************************************
+ // Cross-thread operation not valid: Control 'rtf_dvdInfo' accessed from a thread other than the thread it was created on.
+ // This happens when the DVD is scanned and this item is then selected.
+ // If this item is selected so a blank copy of the window appears, then a DVD is scanned, there is no cross-thread issue.
+ // ***********************************************************
+
}
private void mnu_options_Click(object sender, EventArgs e)
@@ -1356,6 +1364,11 @@ namespace Handbrake
return querySource+ queryDestination+ queryPictureSettings+ queryVideoSettings+ h264Settings+ queryAudioSettings+ queryAdvancedSettings+ verbose;
}
+ private void frmMain_Load(object sender, EventArgs e)
+ {
+
+ }
+
// This is the END of the road ------------------------------------------------------------------------------
}
} \ No newline at end of file