From 8bd535d092430b6df721a91404849755dff042ba Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sat, 14 Jun 2014 14:45:42 -0700 Subject: User survey: force running the survey from command line This way people can test the dialog much easier. Signed-off-by: Dirk Hohndel --- qt-ui/mainwindow.cpp | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'qt-ui/mainwindow.cpp') diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index da1a1cd54..488b5f69f 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -827,16 +827,15 @@ void MainWindow::checkSurvey(QSettings *s) if (!s->contains("FirstUse42")) { QVariant value = QDate().currentDate(); s->setValue("FirstUse42", value); - } else { - // wait a week for production versions, but not at all for non-tagged builds - QString ver(VERSION_STRING); - int waitTime = ver.contains('-') ? -1 : 7; - QDate firstUse42 = s->value("FirstUse42").toDate(); - if (firstUse42.daysTo(QDate().currentDate()) > waitTime && !s->contains("SurveyDone")) { - if (!survey) - survey = new UserSurvey(this); - survey->show(); - } + } + // wait a week for production versions, but not at all for non-tagged builds + QString ver(VERSION_STRING); + int waitTime = ver.contains('-') ? -1 : 7; + QDate firstUse42 = s->value("FirstUse42").toDate(); + if (run_survey || (firstUse42.daysTo(QDate().currentDate()) > waitTime && !s->contains("SurveyDone"))) { + if (!survey) + survey = new UserSurvey(this); + survey->show(); } s->endGroup(); } -- cgit v1.2.3-70-g09d2