13
0

copy AU parameters with plugin

fixes AU-plugin transfer function display.

(LADSPA & LV2 do not need this, connect&run pushes the
parameters)
This commit is contained in:
Robin Gareus 2015-07-20 16:16:41 +02:00
parent 64b63f8ad9
commit 3f4acaef80

View File

@ -455,6 +455,9 @@ AUPlugin::AUPlugin (const AUPlugin& other)
{
init ();
for (int i = 0; i < descriptors.size(); ++i) {
set_parameter (i, other.get_parameter (i));
}
}
AUPlugin::~AUPlugin ()