13
0

VST3: partially revert debcda25b4 implicit notifications to self

This commit is contained in:
Robin Gareus 2020-09-28 04:35:10 +02:00
parent ff26258461
commit d4b774e935
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -1226,6 +1226,16 @@ VST3PI::notify (Vst::IMessage* msg)
*/
(*i)->notify (msg);
}
FUnknownPtr<Vst::IConnectionPoint> componentCP (_component);
FUnknownPtr<Vst::IConnectionPoint> controllerCP (_controller);
if (componentCP) {
componentCP->notify (msg);
}
if (controllerCP) {
controllerCP->notify (msg);
}
return kResultTrue;
}