From 4e0704959149a83126fa8a53c95bf10682471df3 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 8 Mar 2016 22:31:46 +1000 Subject: [PATCH] Fix Import Scanner Cancel not allowing import again --- sleepyhead/mainwindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index f7e1cf4e..8f46b39d 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -958,7 +958,10 @@ void MainWindow::on_action_Import_Data_triggered() QList datacards = detectCPAPCards(); - if (importScanCancelled) return; + if (importScanCancelled) { + in_import = false; + return; + } QListloaders = GetLoaders(MT_CPAP);