summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-11-09 23:43:13 +0000
committerCarl Hetherington <carl@carlh.net>2009-11-09 23:43:13 +0000
commitda03bc931b4c82497fb4b02003804c18768c56b6 (patch)
tree12175b6d8f818dde5fa0c93061ad11674f20f642
parent498dfebcca3b97cdd7b83444040042fe06626241 (diff)
Fix update of the editor mixer when its route is removed; this stops routes (and hence their JACK ports) hanging around after deletion in the UI.
git-svn-id: svn://localhost/ardour2/branches/3.0@6049 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/editor.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc
index 60d6c9a3a4..5b8cb55be8 100644
--- a/gtk2_ardour/editor.cc
+++ b/gtk2_ardour/editor.cc
@@ -4954,7 +4954,13 @@ Editor::remove_route (TimeAxisView *tv)
ENSURE_GUI_THREAD(bind (mem_fun(*this, &Editor::remove_route), tv));
TrackViewList::iterator i;
+
boost::shared_ptr<Route> route;
+ RouteTimeAxisView* rtav = dynamic_cast<RouteTimeAxisView*> (tv);
+ if (rtav) {
+ route = rtav->route ();
+ }
+
TimeAxisView* next_tv = 0;
if (tv == entered_track) {