1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

OP-1517 Fixed saving of vehicle setup to be performed before output calibration and esc calibration.

This commit is contained in:
m_thread 2014-10-01 15:05:32 +02:00
parent 394df149b6
commit 8123e816b6
2 changed files with 3 additions and 3 deletions

View File

@ -217,9 +217,6 @@ void OutputCalibrationPage::setupVehicle()
break;
}
VehicleConfigurationHelper helper(getWizard());
helper.setupVehicle(false);
if (m_calibrationUtil) {
delete m_calibrationUtil;
m_calibrationUtil = 0;

View File

@ -45,6 +45,9 @@ SummaryPage::~SummaryPage()
bool SummaryPage::validatePage()
{
// Save settings so far.
VehicleConfigurationHelper helper(getWizard());
helper.setupVehicle(false);
return true;
}