1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-31 16:09:28 +02:00

Fix problem where effects had gone from KeyConfigPrefs.

This commit is contained in:
James Crook 2018-03-17 21:20:09 +00:00
parent 750ee4f462
commit 7b658d7925

View File

@ -1709,8 +1709,10 @@ void CommandManager::GetAllCommandData(
bool includeMultis)
{
for(const auto &entry : mCommandList) {
if ( entry->isEffect )
continue;
// GetAllCommandData is used by KeyConfigPrefs.
// It does need the effects.
//if ( entry->isEffect )
// continue;
if (!entry->multi)
{
names.Add(entry->name);