mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 11:17:49 -06:00
Removed binding loops
CURA-3856
This commit is contained in:
parent
fc70715cd1
commit
44a22cbd3a
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue