diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc index 0206ecdddc..3d10ac7040 100644 --- a/gtk2_ardour/processor_box.cc +++ b/gtk2_ardour/processor_box.cc @@ -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;