From 558fb2f78993a9880f72b08c8f273cae82f1094c Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 28 Apr 2014 14:05:20 +1000 Subject: [PATCH] Pop up file dialog if no SD card data detected --- sleepyhead/mainwindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index 1ba09399..0613dddb 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -377,7 +377,8 @@ void MainWindow::on_action_Import_Data_triggered() } int res = QMessageBox::question(this, tr("Datacard Located"), - QString(tr("A %1 datacard structure was detected at\n%2\n\nWould you like to import from this location?")).arg(datacard_loader->ClassName()).arg(datacard_path), tr("Yes"), + QString(tr("A %1 datacard structure was detected at\n%2\n\nWould you like to import from this location?")). + arg(datacard_loader->ClassName()).arg(datacard_path), tr("Yes"), tr("Select another folder"), tr("Cancel"), 0, 2); if (res == 1) { asknew = true; @@ -387,6 +388,8 @@ void MainWindow::on_action_Import_Data_triggered() if (res == 2) { return; } + } else { + asknew = true; } if (asknew) {