summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/DivePlannerSetup.qml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/qml/DivePlannerSetup.qml')
-rw-r--r--mobile-widgets/qml/DivePlannerSetup.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/mobile-widgets/qml/DivePlannerSetup.qml b/mobile-widgets/qml/DivePlannerSetup.qml
index 2c04d4695..a0c4a3176 100644
--- a/mobile-widgets/qml/DivePlannerSetup.qml
+++ b/mobile-widgets/qml/DivePlannerSetup.qml
@@ -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 {