Make route list tab LEDs follow record state correctly.
[ardour.git] / gtk2_ardour / route_processor_selection.cc
index ae0ac380a4d8d15bbc76027d70efbea0743dd30b..b3a6620f6bf1bca3f56fea40f7c90d7857ae642b 100644 (file)
@@ -94,7 +94,7 @@ RouteRedirectSelection::add (boost::shared_ptr<Route> r)
 {
        if (find (routes.begin(), routes.end(), r) == routes.end()) {
                routes.push_back (r);
-               r->DropReferences.connect (*this, boost::bind (&RouteRedirectSelection::removed, this, boost::weak_ptr<Route>(r)), gui_context());
+               r->DropReferences.connect (*this, MISSING_INVALIDATOR, boost::bind (&RouteRedirectSelection::removed, this, boost::weak_ptr<Route>(r)), gui_context());
                RoutesChanged();
        }
 }