mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
Fix parameter descriptors for one control leaking into another.
This commit is contained in:
parent
6e16f69c26
commit
ef16fdcd89
1 changed files with 1 additions and 2 deletions
|
|
@ -240,13 +240,12 @@ PluginInsert::create_automatable_parameters ()
|
|||
|
||||
set<Evoral::Parameter> a = _plugins.front()->automatable ();
|
||||
|
||||
ParameterDescriptor desc;
|
||||
|
||||
for (set<Evoral::Parameter>::iterator i = a.begin(); i != a.end(); ++i) {
|
||||
if (i->type() == PluginAutomation) {
|
||||
|
||||
Evoral::Parameter param(*i);
|
||||
|
||||
ParameterDescriptor desc;
|
||||
_plugins.front()->get_parameter_descriptor(i->id(), desc);
|
||||
|
||||
/* the Parameter belonging to the actual plugin doesn't have its range set
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue