diff --git a/libs/ardour/vst3_plugin.cc b/libs/ardour/vst3_plugin.cc index 70fe5a55e9..258bfb0eeb 100644 --- a/libs/ardour/vst3_plugin.cc +++ b/libs/ardour/vst3_plugin.cc @@ -1226,6 +1226,16 @@ VST3PI::notify (Vst::IMessage* msg) */ (*i)->notify (msg); } + + FUnknownPtr componentCP (_component); + FUnknownPtr controllerCP (_controller); + if (componentCP) { + componentCP->notify (msg); + } + if (controllerCP) { + controllerCP->notify (msg); + } + return kResultTrue; }