mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-27 12:51:07 -07:00
Fix display of long names in sync configuration menu
This commit is contained in:
parent
d59889a4ab
commit
b6f5dd8f94
2 changed files with 15 additions and 5 deletions
|
|
@ -52,7 +52,7 @@ Button
|
|||
anchors
|
||||
{
|
||||
left: parent.left
|
||||
leftMargin: UM.Theme.getSize("wide_margin").width
|
||||
leftMargin: UM.Theme.getSize("default_margin").width
|
||||
right: parent.right
|
||||
rightMargin: UM.Theme.getSize("wide_margin").width
|
||||
}
|
||||
|
|
@ -63,10 +63,10 @@ Button
|
|||
{
|
||||
id: repeater
|
||||
model: configuration.extruderConfigurations
|
||||
|
||||
width: parent.width
|
||||
delegate: PrintCoreConfiguration
|
||||
{
|
||||
width: Math.round(parent.width / 2)
|
||||
width: Math.round(parent.width / configuration.extruderConfigurations.length)
|
||||
printCoreConfiguration: modelData
|
||||
visible: configurationItem.isValidMaterial
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue