diff --git a/resources/qml/MainWindow/ApplicationMenu.qml b/resources/qml/MainWindow/ApplicationMenu.qml index 6792690328..bf3781331a 100644 --- a/resources/qml/MainWindow/ApplicationMenu.qml +++ b/resources/qml/MainWindow/ApplicationMenu.qml @@ -32,7 +32,10 @@ Item contentItem: UM.Label { - text: menuBarItem.text + text: menuBarItem.text.replace(new RegExp("&([A-Za-z])"), function (match, character) + { + return `${character}`; + }) horizontalAlignment: Text.AlignLeft verticalAlignment: Text.AlignVCenter }