From dcd2fa9566b97282e08b83cc117c39632b1cddd6 Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Thu, 30 Apr 2020 08:35:59 -0700 Subject: [PATCH] Correct syntax and logic error in selecting SleepyHead folder for migration --- oscar/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/oscar/main.cpp b/oscar/main.cpp index a3a11682..5d37cc37 100644 --- a/oscar/main.cpp +++ b/oscar/main.cpp @@ -196,11 +196,11 @@ bool migrateFromSH(QString destDir) { if (!file.exists() || !dirP.exists()) { // It doesn't have a Preferences.xml file or a Profiles directory in it // Not a new directory.. nag the user. - if (QMessageBox::warning(nullptr, STR_MessageBox_Error, - QObject::tr("The folder you chose does not contain valid SleepyHead data.") + - "\n\n"+QObject::tr("You cannot use this folder:")+" " + datadir ), QMessageBox::Ok) { - continue; // Nope, don't use it, go around the loop again - } + QMessageBox::warning(nullptr, STR_MessageBox_Error, + QObject::tr("The folder you chose does not contain valid SleepyHead data.") + + "\n\n"+QObject::tr("You cannot use this folder:")+" " + datadir, + QMessageBox::Ok); + continue; // Nope, don't use it, go around the loop again } qDebug() << "Migration folder is" << datadir;