From 13ba9aba48a7cddbc0133bd2dc42e63529941f8a Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Mon, 30 Mar 2020 16:37:43 -0400 Subject: [PATCH] Bad: lastpath is undef for not-Linux --- oscar/mainwindow.cpp | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index 53e8a30e..8b8f3cbc 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -829,9 +829,18 @@ void ImportDialogScan::cancelbutton() QList MainWindow::detectCPAPCards() { - const int timeout = 20000; + const int timeout = 20000; // twenty seconds QList detectedCards; + importScanCancelled = false; +#if defined (Q_OS_LINUX) + QString lastpath = (*p_profile)[STR_PREF_LastCPAPPath].toString(); + if (detectedCards.size() == 0) { + qDebug() << "Skipping card detection on Linux"; + return detectedCards; + } +#endif + QListloaders = GetLoaders(MT_CPAP); QTime time; @@ -860,18 +869,19 @@ QList MainWindow::detectCPAPCards() progress.setValue(0); progress.setMaximum(timeout); progress.setVisible(true); - importScanCancelled = false; +// importScanCancelled = false; popup.show(); QApplication::processEvents(); - QString lastpath = (*p_profile)[STR_PREF_LastCPAPPath].toString(); +// QString lastpath = (*p_profile)[STR_PREF_LastCPAPPath].toString(); do { // Rescan in case card inserted QStringList AutoScannerPaths = getDriveList(); - //AutoScannerPaths.push_back(lastpath); +// AutoScannerPaths.push_back(lastpath); + qDebug() << "Drive list size:" << AutoScannerPaths.size(); - if (!AutoScannerPaths.contains(lastpath)) { - AutoScannerPaths.append(lastpath); + if ( (lastpath.size()>0) && ( ! AutoScannerPaths.contains(lastpath))) { + AutoScannerPaths.insert(0, lastpath); } Q_FOREACH(const QString &path, AutoScannerPaths) { @@ -887,10 +897,12 @@ QList MainWindow::detectCPAPCards() } int el=time.elapsed(); progress.setValue(el); - if (el > timeout) break; - if (!popup.isVisible()) break; + if (el > timeout) + break; + if ( ! popup.isVisible()) + break; // needs a slight delay here - for (int i=0; i<5; ++i) { + for (int i=0; i<20; ++i) { QThread::msleep(50); QApplication::processEvents(); }