Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorj.delarago <joeydelarago@gmail.com>2022-06-28 17:33:35 +0300
committerj.delarago <joeydelarago@gmail.com>2022-06-28 17:33:35 +0300
commit8761a476a6994e18f28de191d0aebac5833f9b24 (patch)
tree801f8881af3c2b2eac144bbd7f0ddb0d3ea135dd /resources/qml
parentc118bd4e2998e61d96e90b9d9e4569ef460c0615 (diff)
Fix height binding loops
CURA-8849
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml6
1 files changed, 2 insertions, 4 deletions
diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml
index fc56c7cfd7..3e40c16d74 100644
--- a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml
+++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml
@@ -14,15 +14,14 @@ import Cura 1.0 as Cura
Item
{
id: enableSupportRow
- height: childrenRect.height
+ height: UM.Theme.getSize("print_setup_big_item").height
property real labelColumnWidth: Math.round(width / 3)
Item
{
id: enableSupportContainer
- height: enableSupportCheckBox
- width: childrenRect.width
+ width: labelColumnWidth + enableSupportCheckBox.width
anchors
{
@@ -30,7 +29,6 @@ Item
top: parent.top
bottom: parent.bottom
rightMargin: UM.Theme.getSize("thick_margin").width
- verticalCenter: parent.verticalCenter
}
Cura.IconWithText