Index: sources/gui/qml/components/RangeSlider.qml =================================================================== diff -u -rfc329c788fe9453983072bee937ccbc95b4ed6e4 -r723c692a3a1de3b780d90bcc73a370beb22d73ab --- sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision fc329c788fe9453983072bee937ccbc95b4ed6e4) +++ sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision 723c692a3a1de3b780d90bcc73a370beb22d73ab) @@ -65,9 +65,9 @@ property bool minAdjusted : false ///< first time user adjustment happens property bool maxAdjusted : false ///< first time user adjustment happens - property bool hasAdjusted : false ///< if set to true then component is grayed out until both min and max are adjusted + property bool hasAdjust : false ///< if set to true then component is grayed out until both min and max are adjusted - onHasAdjustedChanged: { + onHasAdjustChanged : { setAdjusted() } onMinAdjustedChanged: { @@ -126,7 +126,7 @@ } /// - /// \brief grays out the rangebar and handler if not adjusted and hasAdjusted set to true + /// \brief grays out the rangebar and handler if not adjusted and hasAdjust set to true /// function setAdjusted() { function check() { @@ -139,7 +139,7 @@ _handlerLeft .color = Colors.createTreatmentActive _handlerRight.color = Colors.createTreatmentActive } - if ( ! hasAdjusted ) { + if ( ! hasAdjust ) { active() } else {