From b8157580c636cafd510410986c2f5a824ba4de9d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 9 Oct 2020 21:48:52 +0200 Subject: [PATCH] VST3: fix PSL callback subscription --- libs/ardour/vst3_plugin.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/vst3_plugin.cc b/libs/ardour/vst3_plugin.cc index 76791755fa..d84d7ccf87 100644 --- a/libs/ardour/vst3_plugin.cc +++ b/libs/ardour/vst3_plugin.cc @@ -2755,8 +2755,8 @@ VST3PI::setup_psl_info_handler () } Stripable* s = dynamic_cast (_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)); }