https://bugs.kde.org/show_bug.cgi?id=411063
Noah Davis <noaha...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REPORTED |CONFIRMED Ever confirmed|0 |1 CC| |noaha...@gmail.com --- Comment #14 from Noah Davis <noaha...@gmail.com> --- I can reproduce this in Plasma 5.26.1. It's not the latest version, which I can't use much right now, but it's not likely that things have changed much in 5.27. The issue is likely caused by the following code. In plasma-workspace/libdbusmenuqt/dbusmenuimporter.cpp, DBusMenuImporterPrivate: ``` void updateActionLabel(QAction *action, const QVariant &value) { QString text = swapMnemonicChar(value.toString(), '_', '&'); action->setText(text); } ``` `swapMnemonicChar()` is defined in plasma-workspace/libdbusmenuqt/utils.cpp and probably needs to "escape" the characters it is meant to swap. -- You are receiving this mail because: You are watching all bug changes.