mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-03 17:39:25 +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:
parent
9bce51a60e
commit
46a6d21585
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user