mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
fix mixing scope brace
This commit is contained in:
parent
d7ac5792b8
commit
ff03eeab04
1 changed files with 15 additions and 13 deletions
|
|
@ -1213,6 +1213,7 @@ GenericMidiControlProtocol::lookup_controllable (const string & str) const
|
|||
c = s->eq_shape_controllable (band);
|
||||
}
|
||||
}
|
||||
|
||||
} else if (path[1] == X_("filter")) {
|
||||
|
||||
/* /route/filter/hi/freq */
|
||||
|
|
@ -1235,6 +1236,8 @@ GenericMidiControlProtocol::lookup_controllable (const string & str) const
|
|||
c = s->filter_slope_controllable (filter);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
} else if (path[1] == X_("compressor")) {
|
||||
|
||||
if (path.size() == 3) {
|
||||
|
|
@ -1251,7 +1254,6 @@ GenericMidiControlProtocol::lookup_controllable (const string & str) const
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (c) {
|
||||
DEBUG_TRACE (DEBUG::GenericMidi, string_compose ("found controllable \"%1\"\n", c->name()));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue