diff --git a/src/tagstudio/qt/mnemonics.py b/src/tagstudio/qt/mnemonics.py index 3ef8bbdf..d7fd44b6 100644 --- a/src/tagstudio/qt/mnemonics.py +++ b/src/tagstudio/qt/mnemonics.py @@ -17,7 +17,7 @@ def remove_mnemonic_marker(label: str) -> str: if ch == "&": # escaped ampersand "&&" if i + 1 < len(label) and label[i + 1] == "&": - result += "&" + result += "&&" skip = True # otherwise skip this '&' continue