Merge pull request #20194 from Ultimaker/CURA-12224_handle-LOOOONG-setting-names

CURA-12224 handle loooong setting names
This commit is contained in:
HellAholic 2025-01-30 09:13:24 +01:00 committed by GitHub
commit a62ed73abe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

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