mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-21 16:37:12 +01:00
Bug 2299 - Keyboard preferences: names of commands contain &
Caused by this commit: 0021a98091 : 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:
@@ -776,7 +776,8 @@ KeyView::RefreshBindings(const CommandIDs & names,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
node.label = labels[i].Translation();
|
auto label = labels[i];
|
||||||
|
node.label = label.Strip().Translation();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fill in remaining info
|
// Fill in remaining info
|
||||||
|
|||||||
Reference in New Issue
Block a user