13
0

VST3: fix PSL callback subscription

This commit is contained in:
Robin Gareus 2020-10-09 21:48:52 +02:00
parent 9e7cfdd880
commit b8157580c6
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -2755,8 +2755,8 @@ VST3PI::setup_psl_info_handler ()
}
Stripable* s = dynamic_cast<Stripable*> (_owner);
s->PropertyChanged.connect_same_thread (_strip_connections, boost::bind (&VST3PI::stripable_property_changed, this, _1));
s->presentation_info().PropertyChanged.connect_same_thread (_strip_connections, boost::bind (&VST3PI::stripable_property_changed, this, _1));
s->PropertyChanged.connect_same_thread (_strip_connections, boost::bind (&VST3PI::psl_stripable_property_changed, this, _1));
s->presentation_info().PropertyChanged.connect_same_thread (_strip_connections, boost::bind (&VST3PI::psl_stripable_property_changed, this, _1));
}