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