summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_routes.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-06-05 16:09:20 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-06-05 16:33:01 -0400
commitb85911d252ae72aaeacf3bb8ea4cc417278fd5a1 (patch)
tree6399f12a8b97a4d62a44e473fa42d9e7e25efce7 /gtk2_ardour/editor_routes.cc
parentdbcf2f50686dd8d5a6b31a6ee6d39fd6c04f2511 (diff)
update use of PresentationInfo/Stripable API
Diffstat (limited to 'gtk2_ardour/editor_routes.cc')
-rw-r--r--gtk2_ardour/editor_routes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_routes.cc b/gtk2_ardour/editor_routes.cc
index 6868a4ad72..e73160b4a2 100644
--- a/gtk2_ardour/editor_routes.cc
+++ b/gtk2_ardour/editor_routes.cc
@@ -1021,7 +1021,7 @@ EditorRoutes::sync_presentation_info_from_treeview ()
cerr << "Would change PI go for " << stripable->name() << " to " << order << " currently " << stripable->presentation_info().order() << endl;
if (order != stripable->presentation_info().order()) {
- stripable->set_presentation_group_order_explicit (order);
+ stripable->set_presentation_order_explicit (order);
change = true;
}