mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-07-24 21:14:25 +08:00
Fix text rendering issue in the menu bar
To denote the hotkey assigned with each menu item an ampersand is used in the configuration. This ampersand was previously rendered directly to the screen due to the `UM.Label`. This is now correctly replaced by an underline. CURA-8688
This commit is contained in:
parent
71e0489c3e
commit
4ea93c5939
@ -32,7 +32,10 @@ Item
|
||||
|
||||
contentItem: UM.Label
|
||||
{
|
||||
text: menuBarItem.text
|
||||
text: menuBarItem.text.replace(new RegExp("&([A-Za-z])"), function (match, character)
|
||||
{
|
||||
return `<u>${character}</u>`;
|
||||
})
|
||||
horizontalAlignment: Text.AlignLeft
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user