1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-29 14:52:12 +01:00

OP-1351 six point calibration - replaced unset home location error popup wiht instruction message

This commit is contained in:
Philippe Renon 2014-06-14 18:41:53 +02:00
parent 440741f616
commit 7eea7113e3

View File

@ -30,7 +30,6 @@
#include "calibration/calibrationuiutils.h"
#include "math.h"
#include <QMessageBox>
#include <QThread>
#include "QDebug"
@ -126,12 +125,8 @@ void SixPointCalibrationModel::start(bool calibrateAccel, bool calibrateMag)
// check if Homelocation is set
HomeLocation::DataFields homeLocationData = homeLocation->getData();
if (!homeLocationData.Set) {
QMessageBox msgBox;
msgBox.setInformativeText(tr("<p>Home location not set.</p><p>Please set your home location and retry. Aborting calibration!</p>"));
msgBox.setStandardButtons(QMessageBox::Ok);
msgBox.setDefaultButton(QMessageBox::Ok);
msgBox.setIcon(QMessageBox::Information);
msgBox.exec();
displayInstructions(tr("Home location not set, please set your home location and retry."), WizardModel::Warn);
displayInstructions(tr("Aborting calibration!"), WizardModel::Failure);
return;
}