mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-20 21:27:50 -06: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
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue