From 8f7ffe7feaa167d8eccd226552957a8bb1f1d47c Mon Sep 17 00:00:00 2001 From: sr55 Date: Thu, 26 Jul 2007 19:22:02 +0000 Subject: [PATCH] WinGui: - Forgot to take out a debug messagebox - Added a 3Second thread sleep before trying to rescan git-svn-id: svn://localhost/HandBrake/trunk@744 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/C#/frmMain.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index ddb94b18..c75ddf54 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; -- 2.11.0