Set group tabs dirty when their membership changes.

Should fix #4441.


git-svn-id: svn://localhost/ardour2/branches/3.0@10428 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington
2011-11-03 17:18:51 +00:00
parent 83d47f57c0
commit eff5781ee1

View File

@@ -606,13 +606,15 @@ void
GroupTabs::route_added_to_route_group (RouteGroup*, boost::weak_ptr<Route> w)
{
/* Similarly-spirited hack as in route_group_property_changed */
boost::shared_ptr<Route> r = w.lock ();
if (!r) {
return;
}
r->gui_changed (X_("color"), 0);
set_dirty ();
}
void
@@ -626,6 +628,8 @@ GroupTabs::route_removed_from_route_group (RouteGroup*, boost::weak_ptr<Route> w
}
r->gui_changed (X_("color"), 0);
set_dirty ();
}
void