mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
VST3: partially revert debcda25b4 implicit notifications to self
This commit is contained in:
parent
ff26258461
commit
d4b774e935
1 changed files with 10 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue