1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-06 17:13:49 +01:00

Determinate order of names under Tools> Apply Macro...

... There was a complaint that it was neither by name or by date for some users
This commit is contained in:
Paul Licameli
2019-02-19 14:16:28 -05:00
parent e609a9dcef
commit aae544befe

View File

@@ -997,6 +997,8 @@ wxArrayString MacroCommands::GetNames()
names.Add(ff.GetName());
}
std::sort( names.begin(), names.end() );
return names;
}