Fix minor error after rebase

This commit is contained in:
Arjen Hiemstra 2016-02-15 08:39:38 +01:00 committed by Ghostkeeper
parent 19c25895bf
commit 4e139ae710

View file

@ -58,15 +58,9 @@ Rectangle {
Rectangle{
width: Math.max(parent.width * base.progress)
height: parent.height
<<<<<<< 041fa2b3592e015eebe779169c9d7f4565b3a788
color: UM.Theme.colors.progressbar_control
radius: UM.Theme.sizes.progressbar_radius.width
visible: base.backendState == 1 ? true : false
=======
color: UM.Theme.getColor("progressbar_control")
radius: UM.Theme.getSize("progressbar_radius").width
visible: base.progress > 0.99 ? false : true
>>>>>>> Replace Theme property accessors with getThing calls
visible: base.backendState == 1 ? true : false
}
}