diff --git a/src/commands/CommandManager.cpp b/src/commands/CommandManager.cpp index fa44278f2..488e7d77e 100644 --- a/src/commands/CommandManager.cpp +++ b/src/commands/CommandManager.cpp @@ -665,9 +665,10 @@ int CommandManager::NewIdentifier(wxString name, wxString label, wxMenu *menu, #endif tmpEntry->defaultKey = tmpEntry->key; + // For key bindings for commands with a list, such as effects, + // the name in prefs is the category name plus the effect name. if( multi ) name= wxString::Format( wxT("%s:%s"), name.c_str(), label.c_str() ); - // + ":" + label;//wxString::Format(wxT("%d"),index ); tmpEntry->name = name; tmpEntry->label = label; diff --git a/src/prefs/KeyConfigPrefs.cpp b/src/prefs/KeyConfigPrefs.cpp index 0aeaf53fc..048507658 100644 --- a/src/prefs/KeyConfigPrefs.cpp +++ b/src/prefs/KeyConfigPrefs.cpp @@ -222,12 +222,7 @@ void KeyConfigPrefs::RepopulateBindingsList() Labels, Categories, // 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);