Add delay to SD autoscanner

This commit is contained in:
Mark Watkins 2014-05-14 06:02:42 +10:00
parent 87ca2ebf7e
commit ec0ed2359c

View File

@ -524,7 +524,6 @@ QStringList MainWindow::detectCPAPCards()
QStringList AutoScannerPaths = getDriveList();
Q_FOREACH(const QString &path, AutoScannerPaths) {
qDebug() << "Scanning" << path;
// Scan through available machine loaders and test if this folder contains valid folder structure
Q_FOREACH(MachineLoader * loader, loaders) {
if (loader->Detect(path)) {
@ -540,7 +539,7 @@ QStringList MainWindow::detectCPAPCards()
if (el > timeout) break;
if (!popup.isVisible()) break;
// needs a slight delay here
QThread::msleep(200);
} while (datapaths.size() == 0);
popup.hide();
popup.disconnect(&skipbtn, SIGNAL(clicked()), &popup, SLOT(hide()));