1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-05 14:49:25 +02:00

Hotkeys for effects ONLY supported on Windows (for now).

This commit is contained in:
james.k.crook@gmail.com 2012-03-29 20:40:55 +00:00
parent d1afc6e8c5
commit c742d8de0b

View File

@ -221,7 +221,14 @@ void KeyConfigPrefs::RepopulateBindingsList()
mDefaultKeys,
Labels,
Categories,
true ); // JKC change to true to include effects (list items).
// True to include effects (list items), false otherwise.
// Hotkeys for effects not yet supported on Linux/Mac.
#ifdef __WXMSW__
true
#else
false
#endif
);
bool save = (mKeys.GetCount() == 0);