We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f258578 commit 1c5e001Copy full SHA for 1c5e001
1 file changed
src/tagstudio/qt/mnemonics.py
@@ -17,7 +17,7 @@ def remove_mnemonic_marker(label: str) -> str:
17
if ch == "&":
18
# escaped ampersand "&&"
19
if i + 1 < len(label) and label[i + 1] == "&":
20
- result += "&"
+ result += "&&"
21
skip = True
22
# otherwise skip this '&'
23
continue
0 commit comments