diveplanner: adjust sac-factor calculation.

The real values are 1.0 to 10.0, but QML needs int so mobile
gets values 10.0 to 100.0

add sacfactor() to QMLInterface and update QML.

Signed-off-by: jan Iversen <jan@casacondor.com>
This commit is contained in:
jan Iversen 2020-01-21 16:16:10 +01:00 committed by Dirk Hohndel
parent cd3c2266f9
commit 86fd49f2d7
4 changed files with 27 additions and 16 deletions

View file

@ -261,15 +261,15 @@ Kirigami.ScrollablePage {
text: qsTr("SAC factor")
}
TemplateSpinBox {
from: 20
from: 10
to: 99
stepSize: 1
value: Planner.sacfactor
value: Backend.sacfactor
textFromValue: function (value, locale) {
return (value / 10).toFixed(1)
}
onValueModified: {
Planner.sacfactor = value
Backend.sacfactor = value
}
}
TemplateLabel {