13
0

Use route group solo property for route listen as well

as solo (#4228).


git-svn-id: svn://localhost/ardour2/branches/3.0@9949 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-08-03 11:52:45 +00:00
parent 9e6eb3e0c7
commit c18009e11f

View File

@ -570,6 +570,11 @@ Route::set_listen (bool yn, void* src)
return;
}
if (_route_group && src != _route_group && _route_group->is_active() && _route_group->is_solo()) {
_route_group->foreach_route (boost::bind (&Route::set_listen, _1, yn, _route_group));
return;
}
if (_monitor_send) {
if (yn != _monitor_send->active()) {
if (yn) {