Index: sources/gui/qml/components/ProgressBarEx.qml =================================================================== diff -u -rcf3ef3656c06ade00b6bc6c09e8e0f858ee1af24 -r90fec29e26dde73ba3cc6db04c5334fff430d2f7 --- sources/gui/qml/components/ProgressBarEx.qml (.../ProgressBarEx.qml) (revision cf3ef3656c06ade00b6bc6c09e8e0f858ee1af24) +++ sources/gui/qml/components/ProgressBarEx.qml (.../ProgressBarEx.qml) (revision 90fec29e26dde73ba3cc6db04c5334fff430d2f7) @@ -51,12 +51,12 @@ onClicked: extraClicked() } - Rectangle { id: _rightBackground // to match design and get the right end of progress bar straight and not rounded + 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: 20 + width: percent < 3 ? 2 : 8 anchors.right: progress.right - visible: value > 0 - + visible: percent > 3 } }