diff options
author | sr55 <[email protected]> | 2007-07-26 19:22:02 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-07-26 19:22:02 +0000 |
commit | 4dfc533faf8e773f366c53fb8e63fec1cb496f30 (patch) | |
tree | dfde085dc024d63e14031c88f1dd5fa0471d09d6 /win | |
parent | 121b5fedcc7a8f91bb7584389c7d1b8c3ebb8bb3 (diff) |
WinGui:
- Forgot to take out a debug messagebox
- Added a 3Second thread sleep before trying to rescan
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@744 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/C#/frmMain.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index ddb94b184..c75ddf541 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -580,10 +580,10 @@ namespace Handbrake {
if (drp_dvdtitle.Items.Count == 0)
{
- MessageBox.Show(scanTwice.ToString());
if (scanTwice == 0)
{
- MessageBox.Show("Scan Failed. Will attempt to scan the source 1 more time.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);
+ MessageBox.Show("Scan Failed. Waiting 5 Seconds before attempting to re-scan the source a 2nd time.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);
+ Thread.Sleep(3000);
Form frmRD = new frmReadDVD(filename, this, dvdInfoWindow);
frmRD.ShowDialog();
scanTwice = 1;
|