mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Always add plugins in the order given by the Manager UI.
This commit is contained in:
parent
e2d19d1668
commit
2fdeb54b78
1 changed files with 5 additions and 0 deletions
|
|
@ -2493,6 +2493,11 @@ ProcessorBox::use_plugins (const SelectedPlugins& plugins)
|
|||
}
|
||||
}
|
||||
}
|
||||
/* add next processor below the currently added.
|
||||
* Note: placement < 0: add the bottom */
|
||||
if (_placement >= 0) {
|
||||
++_placement;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue