Set height of progressBar to 0 when not visible in WizardPanel

CURA-8154
This commit is contained in:
Kostas Karmas 2021-04-09 11:42:13 +02:00
parent 34195551f4
commit 89697ea489

View file

@ -53,7 +53,7 @@ Item
anchors.left: parent.left
anchors.right: parent.right
height: UM.Theme.getSize("progressbar").height
height: visible ? UM.Theme.getSize("progressbar").height : 0
value: base.progressValue
}