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
This commit is contained in:
j.delarago 2022-06-16 13:12:36 +02:00
parent 88168bc0e1
commit 7d8fdf8bdd

View file

@ -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
}
}