Removed binding loops

CURA-3856
This commit is contained in:
Jaime van Kessel 2017-07-07 10:41:44 +02:00
parent fc70715cd1
commit 44a22cbd3a

View file

@ -55,7 +55,7 @@ UM.Dialog
{
id: bottomBar
width: parent.width
height: childrenRect.height
height: closeButton.height
anchors.bottom:parent.bottom
anchors.left: parent.left
ProgressBar
@ -92,10 +92,11 @@ UM.Dialog
Rectangle
{
width: pluginList.width;
height: childrenRect.height;
height: texts.height;
color: index % 2 ? palette.base : palette.alternateBase
Column
{
id: texts
width: parent.width
height: childrenRect.height
anchors.left: parent.left
@ -128,7 +129,6 @@ UM.Dialog
anchors.rightMargin: UM.Theme.getSize("default_margin").width
anchors.verticalCenter: parent.verticalCenter
enabled: (!model.already_installed || model.can_upgrade) && !manager.isDownloading
}
}