1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-10 16:35:32 +01:00

Simplified Audacity (using ! prefix) now works for effects and analyse items too.

This commit is contained in:
james.k.crook@gmail.com
2013-09-22 11:48:29 +00:00
parent 7ddd4ed2ab
commit db56cbd363
2 changed files with 45 additions and 31 deletions

View File

@@ -53,6 +53,8 @@ wxString Effect::StripAmpersand(const wxString& str)
{
wxString strippedStr = str;
strippedStr.Replace(wxT("&"), wxT(""));
// ! is used for hiding effects, and should not affect sort order.
strippedStr.Replace(wxT("!"), wxT(""));
return strippedStr;
}