From: sr55 Date: Thu, 26 Jul 2007 19:22:02 +0000 (+0000) Subject: WinGui: X-Git-Tag: 0.9.0~97 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4dfc533faf8e773f366c53fb8e63fec1cb496f30;p=handbrake 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 --- 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;