Fix spacing for menu

CURA-9012
This commit is contained in:
Jaime van Kessel 2022-03-09 14:01:54 +01:00
parent d752f34b70
commit 91b6ceb951

View file

@ -34,14 +34,16 @@ Item
{ {
text: menuBarItem.text.replace(new RegExp("&([A-Za-z])"), function (match, character) text: menuBarItem.text.replace(new RegExp("&([A-Za-z])"), function (match, character)
{ {
return `<u>${character}</u>`; return `<u>${character}</u>`
}) })
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignVCenter verticalAlignment: Text.AlignVCenter
} }
leftPadding: UM.Theme.getSize("default_margin").width
rightPadding: UM.Theme.getSize("default_margin").width
background: Rectangle background: Rectangle
{ {
color: menuBarItem.highlighted ? UM.Theme.getColor("background_2") : "transparent" color: menuBarItem.highlighted ? UM.Theme.getColor("background_2") : "transparent"
} }
} }