mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-30 08:05:16 +08:00
Merge pull request #20194 from Ultimaker/CURA-12224_handle-LOOOONG-setting-names
CURA-12224 handle loooong setting names
This commit is contained in:
commit
a62ed73abe
@ -13,7 +13,7 @@ import "."
|
||||
Item
|
||||
{
|
||||
id: base
|
||||
height: enabled ? UM.Theme.getSize("section").height + UM.Theme.getSize("narrow_margin").height : 0
|
||||
height: enabled ? Math.max(UM.Theme.getSize("section").height, label.height) + UM.Theme.getSize("narrow_margin").height : 0
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
|
||||
|
@ -567,7 +567,7 @@
|
||||
"section_icon_column": [2.5, 2.5],
|
||||
|
||||
"setting": [25.0, 1.8],
|
||||
"setting_control": [11.0, 2.0],
|
||||
"setting_control": [9.0, 2.0],
|
||||
"setting_control_radius": [0.15, 0.15],
|
||||
"setting_control_depth_margin": [1.4, 0.0],
|
||||
"setting_unit_margin": [0.5, 0.5],
|
||||
|
Loading…
x
Reference in New Issue
Block a user