1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 17:49:45 +02:00
This commit is contained in:
Leland Lucius 2015-08-09 23:49:57 -05:00
parent 8d236b88ae
commit 59b4c9d64b

View File

@ -998,8 +998,8 @@ void CommandManager::Modify(wxString name, wxString newLabel)
{
CommandListEntry *entry = mCommandNameHash[name];
if (entry && entry->menu) {
entry->label = newLabel.BeforeFirst(wxT('\t'));
entry->menu->SetLabel(entry->id, entry->label);
entry->label = newLabel;
entry->menu->SetLabel(entry->id, GetLabel(entry));
}
}