Index: sources/gui/qml/components/ProgressBarEx.qml =================================================================== diff -u -r90fec29e26dde73ba3cc6db04c5334fff430d2f7 -r7caa737179a8c31825ae6445f593ac7ff5f95080 --- sources/gui/qml/components/ProgressBarEx.qml (.../ProgressBarEx.qml) (revision 90fec29e26dde73ba3cc6db04c5334fff430d2f7) +++ sources/gui/qml/components/ProgressBarEx.qml (.../ProgressBarEx.qml) (revision 7caa737179a8c31825ae6445f593ac7ff5f95080) @@ -45,18 +45,19 @@ minimum : _root.minimum maximum : _root.maximum value : _root.valueEx - - maxText.visible: visible margin : 0 - onClicked: extraClicked() + maxText.visible : visible + + onClicked : extraClicked() } Rectangle { id: _rightBackground // to match design and get the right end of progress bar straight edged and not rounded property int percent: ((value / (maximum - minimum)) * 100) - color: gradientEnd - height: parent.height - width: percent < 3 ? 2 : 8 - anchors.right: progress.right - visible: percent > 3 + + color : gradientEnd + height : parent.height + width : percent < 3 ? 2 : 8 + anchors.right : progress.right + visible : percent > 3 } }