From 535d60237486e2227d22e5febbcfbf868abb11e3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 8 Feb 2010 21:41:24 +0000 Subject: [PATCH] Fix logic so that soloing a bus does not mute things that feed it. git-svn-id: svn://localhost/ardour2/branches/3.0@6656 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 7b12478092..c7270e6ce9 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -2449,8 +2449,7 @@ Session::route_solo_changed (void* /*src*/, boost::weak_ptr wpr) for (RouteList::iterator i = r->begin(); i != r->end(); ++i) { bool via_sends_only; - - if ((*i) == route || !(*i)->solo_isolated() || !(*i)->is_master() || !(*i)->is_control() || (*i)->is_hidden()) { + if ((*i) == route || (*i)->solo_isolated() || (*i)->is_master() || (*i)->is_control() || (*i)->is_hidden()) { continue; } else if ((*i)->feeds (route, &via_sends_only)) { if (!via_sends_only) {