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-16 14:12:36 +0300
committerj.delarago <joeydelarago@gmail.com>2022-06-16 14:12:36 +0300
commit7d8fdf8bdd63116aa890bec03e95463f66205ad4 (patch)
tree7cbf340f76d70bbe0bf023332eb821d88129f91a /resources/qml
parent88168bc0e156b163edb797fc1a087d6bd9459432 (diff)
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
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml3
1 files changed, 3 insertions, 0 deletions
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
}
}