Set surface pressure and salinity correctly when replanning

We need to initialize the UI elements accordingly.

Fixes #1094

Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Robert C. Helling 2016-12-15 23:02:32 +01:00 committed by Dirk Hohndel
parent e182581f77
commit fb2ba72e42
3 changed files with 14 additions and 0 deletions

View file

@ -181,6 +181,16 @@ void DivePlannerWidget::setupStartTime(QDateTime startTime)
ui.dateEdit->setDate(startTime.date());
}
void DivePlannerWidget::setSurfacePressure(int surface_pressure)
{
ui.ATMPressure->setValue(surface_pressure);
}
void DivePlannerWidget::setSalinity(int salinity)
{
ui.salinity->setValue(salinity / 10000.0);
}
void DivePlannerWidget::settingsChanged()
{
// Adopt units