1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 08:09:32 +02:00

Bug 2299 - Keyboard preferences: names of commands contain &

Caused by this commit: 0021a98091a70b : Remove another unnecessary stripping of accelerators from labels

Unfortunately, the stripping was necessary.

Fix:
Reinstate stripping.

Derives from tag: Audacity-2.3.3 + 94 commits
This commit is contained in:
David Bailes 2020-01-31 15:11:18 +00:00
parent 9bce51a60e
commit 46a6d21585

View File

@ -776,7 +776,8 @@ KeyView::RefreshBindings(const CommandIDs & names,
}
else
{
node.label = labels[i].Translation();
auto label = labels[i];
node.label = label.Strip().Translation();
}
// Fill in remaining info