mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-10 07:15:03 -06:00
Fix spacing between extruders in selector card
CURA-9278
This commit is contained in:
parent
b7fd75b2dd
commit
681d33de81
1 changed files with 2 additions and 3 deletions
|
@ -50,7 +50,7 @@ Rectangle
|
|||
Layout.fillWidth: true
|
||||
Layout.preferredWidth: parent.width / 2
|
||||
Layout.alignment: Qt.AlignTop
|
||||
spacing: UM.Theme.getSize("default_margin").width
|
||||
spacing: UM.Theme.getSize("narrow_margin").width
|
||||
|
||||
Repeater
|
||||
{
|
||||
|
@ -88,7 +88,6 @@ Rectangle
|
|||
text: modelData.materials.length == 1 ? `${modelData.materials[0].brand} ${modelData.materials[0].name}` : ""
|
||||
visible: modelData.materials.length == 1
|
||||
}
|
||||
|
||||
ColumnLayout
|
||||
{
|
||||
id: multiMaterialText
|
||||
|
@ -98,7 +97,7 @@ Rectangle
|
|||
visible: modelData.materials.length > 1
|
||||
Repeater
|
||||
{
|
||||
model: modelData.materials
|
||||
model: modelData.materials.length > 1 ? modelData.materials: null
|
||||
UM.Label
|
||||
{
|
||||
text: `${modelData.brand} ${modelData.name}`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue