do not run ::associate() for bindings used as templates

This needs a better solution than this hack
This commit is contained in:
Paul Davis
2025-03-12 17:57:29 -06:00
parent bfa39cd57a
commit 90d5c82886

View File

@@ -552,6 +552,11 @@ Bindings::relativize ()
void
Bindings::associate ()
{
#warning find a better solution than this
if (_name == "Editing" || _name == "MIDI") {
return;
}
KeybindingMap::iterator k;
for (k = press_bindings.begin(); k != press_bindings.end(); ++k) {