aboutsummaryrefslogtreecommitdiffstats
path: root/apps/com.pelagicore.climate/panels/ClimateContentPanel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'apps/com.pelagicore.climate/panels/ClimateContentPanel.qml')
-rw-r--r--apps/com.pelagicore.climate/panels/ClimateContentPanel.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/com.pelagicore.climate/panels/ClimateContentPanel.qml b/apps/com.pelagicore.climate/panels/ClimateContentPanel.qml
index 7ceed58f..c1c12ebe 100644
--- a/apps/com.pelagicore.climate/panels/ClimateContentPanel.qml
+++ b/apps/com.pelagicore.climate/panels/ClimateContentPanel.qml
@@ -59,12 +59,13 @@ Item {
// need to set "to" and "from" before "value", as modifying them also causes
// "value" to change
- leftTempSlider.from = root.store.leftSeat.minValue
+ //keep init order not to have negative model size warning, Slider defaults 0.0 .. 1.0
leftTempSlider.to = root.store.leftSeat.maxValue
+ leftTempSlider.from = root.store.leftSeat.minValue
leftTempSlider.value = root.store.leftSeat.value
- rightTempSlider.from = root.store.rightSeat.minValue
rightTempSlider.to = root.store.rightSeat.maxValue
+ rightTempSlider.from = root.store.rightSeat.minValue
rightTempSlider.value = root.store.rightSeat.value
}
}