summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_routes.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-06-10 13:54:29 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-06-10 13:57:19 -0400
commit53ba6f1121442efcc0e776bf17e7b8894cc882e6 (patch)
tree6a1c812b5e09ed7ea370487efd2da4961a1e808e /gtk2_ardour/editor_routes.cc
parentdf09d80bd39dbba9349cf8fac6cfb8a823c23df4 (diff)
EditorRoutes needs to connect to the right property change signal.
Diffstat (limited to 'gtk2_ardour/editor_routes.cc')
-rw-r--r--gtk2_ardour/editor_routes.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk2_ardour/editor_routes.cc b/gtk2_ardour/editor_routes.cc
index 4e97f75796..bc16c14d60 100644
--- a/gtk2_ardour/editor_routes.cc
+++ b/gtk2_ardour/editor_routes.cc
@@ -801,6 +801,7 @@ EditorRoutes::time_axis_views_added (list<TimeAxisView*> tavs)
stripable->gui_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::handle_gui_changes, this, _1, _2), gui_context());
stripable->PropertyChanged.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::route_property_changed, this, _1, ws), gui_context());
+ stripable->presentation_info().PropertyChanged.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::route_property_changed, this, _1, ws), gui_context());
if (boost::dynamic_pointer_cast<Track> (stripable)) {
boost::shared_ptr<Track> t = boost::dynamic_pointer_cast<Track> (stripable);