Index: sources/gui/qml/components/ProgressBarEx.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -r7805806e4370be4d9207872e916f478875bd4ba6 --- sources/gui/qml/components/ProgressBarEx.qml (.../ProgressBarEx.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/ProgressBarEx.qml (.../ProgressBarEx.qml) (revision 7805806e4370be4d9207872e916f478875bd4ba6) @@ -34,6 +34,8 @@ minText.visible : true maxText.visible : true + radius : height + progressRadius : radius ProgressRect { id: _progressRectEx z : 0 // ProgressBarEx z order in the gui @@ -44,9 +46,17 @@ maximum : _root.maximum value : _root.valueEx - color : Colors.highlightMedProgressBar maxText.visible: visible margin : 0 onClicked: extraClicked() } + + Rectangle { id: _rightBackground // quick workaround to get the look of the progress bar as design + color: gradientEnd + height: parent.height + width: 20 + anchors.right: progress.right + visible: value > 0 + + } }