Index: sources/gui/qml/components/Slider.qml =================================================================== diff -u -re81cebefb7bc95553f32e6ba505706683f9c12b4 -ra0fca1850efe5a9d00bd3308e347d115ef36c479 --- sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision e81cebefb7bc95553f32e6ba505706683f9c12b4) +++ sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision a0fca1850efe5a9d00bd3308e347d115ef36c479) @@ -24,7 +24,7 @@ * \brief Denali project ProgressBar */ RangeRect { id: _root - property alias value : _progressRect.value + property real value : _progressRect.value property real step : 1 property bool stepSnap : false @@ -57,6 +57,8 @@ signal handleSelected() signal sliderSelected() + onValueChanged: _progressRect.value = value + function incrementValue (vInStepSegments) { updateValue(vInStepSegments, true) } @@ -110,7 +112,7 @@ if(!isActive) { _root.value = inActiveZero ? 0 : minimum } else { - _root.value = minimum + _root.value = _progressRect.value = minimum } activeChanged() // emit