Index: sources/gui/qml/components/ProgressBarEx.qml =================================================================== diff -u -r7caa737179a8c31825ae6445f593ac7ff5f95080 -r23f8a6036e22f80c3c5fd2834a2980bb62d2a34d --- sources/gui/qml/components/ProgressBarEx.qml (.../ProgressBarEx.qml) (revision 7caa737179a8c31825ae6445f593ac7ff5f95080) +++ sources/gui/qml/components/ProgressBarEx.qml (.../ProgressBarEx.qml) (revision 23f8a6036e22f80c3c5fd2834a2980bb62d2a34d) @@ -34,8 +34,6 @@ minText.visible : true maxText.visible : true - radius : height - progressRadius : radius ProgressRect { id: _progressRectEx z : 0 // ProgressBarEx z order in the gui @@ -45,19 +43,10 @@ minimum : _root.minimum maximum : _root.maximum value : _root.valueEx + color : Colors.highlightMedProgressBar margin : 0 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 - } }