summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_routes.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-17 09:35:24 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:42 -0400
commitdaab42f209796f8628dc2ad58c38fca0410fd156 (patch)
tree9af01e94ebfe9c6e6c9b334b5b018dfca78c13ac /gtk2_ardour/editor_routes.cc
parent6ef7139fb33edac3820a0cabf77428ea28618380 (diff)
use Session::notify_presentation_info_changed() rather than emitting Stripable::PresentationInfoChange after editor-based reordering
Diffstat (limited to 'gtk2_ardour/editor_routes.cc')
-rw-r--r--gtk2_ardour/editor_routes.cc3
1 files changed, 2 insertions, 1 deletions
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 ();
}
}