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:
parent
9e6eb3e0c7
commit
c18009e11f
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user