Index: sources/gui/qml/components/ProgressBar.qml =================================================================== diff -u -rdff9d50ebfa80ec99313586e1d48662b72940d24 -r23f8a6036e22f80c3c5fd2834a2980bb62d2a34d --- sources/gui/qml/components/ProgressBar.qml (.../ProgressBar.qml) (revision dff9d50ebfa80ec99313586e1d48662b72940d24) +++ sources/gui/qml/components/ProgressBar.qml (.../ProgressBar.qml) (revision 23f8a6036e22f80c3c5fd2834a2980bb62d2a34d) @@ -15,6 +15,7 @@ // Qt import QtQuick 2.12 +import QtGraphicalEffects 1.15 // Project // Qml imports @@ -36,12 +37,11 @@ property alias marker : _marker property alias markerHeight : _marker.height property string unitText : "" + property bool showMarker : true property alias decimal : _root.decimal property alias minimum : _root.minimum property alias maximum : _root.maximum - property color gradientStart : _root.color - property color gradientEnd : _root.color signal progressClicked() @@ -51,7 +51,7 @@ maximum : 0 minText.visible : true - maxText.visible : true + maxText.visible : true // Since this Component is the base Component of the ProgressBarEx // we need to use the z order @@ -63,8 +63,6 @@ minimum : _root.minimum maximum : _root.maximum value : _root.value - gradientStart : _root.gradientStart - gradientEnd : _root.gradientEnd onClicked : progressClicked() } @@ -81,5 +79,6 @@ decimal : _root.decimal value : _root.value + visible : _root.showMarker } }