From 0596032b362fb7b3498d67aed1908c51250e5e09 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 8 May 2017 10:56:24 +0100 Subject: [PATCH] fix logic when removing routes Selection change and re-order signals are distinct. --- libs/ardour/session.cc | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 1c72b8042a..07c6bbb042 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -3825,22 +3825,23 @@ Session::remove_routes (boost::shared_ptr routes_to_remove) routes.flush (); - /* try to cause everyone to drop their references - * and unregister ports from the backend + /* remove these routes from the selection if appropriate, and signal + * the change *before* we call DropReferences for them. */ if (send_selected && !deletion_in_progress()) { for (RouteList::iterator iter = routes_to_remove->begin(); iter != routes_to_remove->end(); ++iter) { _selection->remove_stripable_by_id ((*iter)->id()); } - PropertyChange so; - so.add (Properties::order); - if (send_selected) { - so.add (Properties::selected); - } - PresentationInfo::Change (so); + PropertyChange pc; + pc.add (Properties::selected); + PresentationInfo::Change (pc); } + /* try to cause everyone to drop their references + * and unregister ports from the backend + */ + for (RouteList::iterator iter = routes_to_remove->begin(); iter != routes_to_remove->end(); ++iter) { (*iter)->drop_references (); } @@ -3849,6 +3850,9 @@ Session::remove_routes (boost::shared_ptr routes_to_remove) return; } + PropertyChange pc; + pc.add (Properties::selected); + PresentationInfo::Change (pc); /* save the new state of the world */