From 7d8fdf8bdd63116aa890bec03e95463f66205ad4 Mon Sep 17 00:00:00 2001 From: "j.delarago" Date: Thu, 16 Jun 2022 13:12:36 +0200 Subject: Items in intent selection settings column were not filling width, the result of this was any item with more than one child would have these children squished together. Fix is to have the children fill their width CURA-8849 --- resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'resources/qml') diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml index aac8dcecfb..8feadc4f88 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml @@ -54,6 +54,7 @@ Item { width: parent.width visible: !recommendedResolutionSelector.visible + Layout.fillWidth: true } @@ -95,6 +96,7 @@ Item width: parent.width // TODO Create a reusable component with these properties to not define them separately for each component labelColumnWidth: parent.firstColumnWidth + Layout.fillWidth: true Layout.leftMargin: UM.Theme.getSize("default_margin").width } @@ -103,6 +105,7 @@ Item width: parent.width // TODO Create a reusable component with these properties to not define them separately for each component labelColumnWidth: parent.firstColumnWidth + Layout.fillWidth: true Layout.leftMargin: UM.Theme.getSize("default_margin").width } } -- cgit v1.2.3