From daab42f209796f8628dc2ad58c38fca0410fd156 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 17 May 2016 09:35:24 -0400 Subject: [PATCH] use Session::notify_presentation_info_changed() rather than emitting Stripable::PresentationInfoChange after editor-based reordering --- gtk2_ardour/editor_routes.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_routes.cc b/gtk2_ardour/editor_routes.cc index d28eb5d006..c909c5a1c5 100644 --- a/gtk2_ardour/editor_routes.cc +++ b/gtk2_ardour/editor_routes.cc @@ -955,7 +955,8 @@ EditorRoutes::sync_presentation_info_from_treeview () } if (change) { - Stripable::PresentationInfoChange(); /* EMIT SIGNAL */ + DEBUG_TRACE (DEBUG::OrderKeys, "... notify PI change from editor GUI\n"); + _session->notify_presentation_info_change (); } }