Fix height binding loops

CURA-8849
This commit is contained in:
j.delarago 2022-06-28 16:33:35 +02:00
parent c118bd4e29
commit 8761a476a6

View File

@ -14,15 +14,14 @@ import Cura 1.0 as Cura
Item Item
{ {
id: enableSupportRow id: enableSupportRow
height: childrenRect.height height: UM.Theme.getSize("print_setup_big_item").height
property real labelColumnWidth: Math.round(width / 3) property real labelColumnWidth: Math.round(width / 3)
Item Item
{ {
id: enableSupportContainer id: enableSupportContainer
height: enableSupportCheckBox width: labelColumnWidth + enableSupportCheckBox.width
width: childrenRect.width
anchors anchors
{ {
@ -30,7 +29,6 @@ Item
top: parent.top top: parent.top
bottom: parent.bottom bottom: parent.bottom
rightMargin: UM.Theme.getSize("thick_margin").width rightMargin: UM.Theme.getSize("thick_margin").width
verticalCenter: parent.verticalCenter
} }
Cura.IconWithText Cura.IconWithText