diff --git a/src/declarativeimports/plasmacomponents/qml/ProgressBar.qml b/src/declarativeimports/plasmacomponents/qml/ProgressBar.qml index b872c976c..2e19c004f 100644 --- a/src/declarativeimports/plasmacomponents/qml/ProgressBar.qml +++ b/src/declarativeimports/plasmacomponents/qml/ProgressBar.qml @@ -103,6 +103,7 @@ Item { width: Math.max(margins.left + margins.right, (indeterminate ? units.gridUnit*2 : range.position)) height: Math.max(margins.top + margins.bottom, (indeterminate ? units.gridUnit*2 : range.position)) + visible: indeterminate || range.position > 0 } //this can't reference its parent because needs to be loaded before it, //so never bind background to anything here