Always add plugins in the order given by the Manager UI.

This commit is contained in:
Robin Gareus 2017-07-04 17:54:17 +02:00
parent e2d19d1668
commit 2fdeb54b78

View file

@ -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;