summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-03-14 01:49:02 +0100
committerRobin Gareus <robin@gareus.org>2015-03-14 01:49:32 +0100
commit524f3222500466094aac17b58c4b8c702ff61c69 (patch)
tree2b6cfbf0b547833b3df0661f907a7f45d5928aae
parentffd32ae5e184b42aa9f38903f146751b36b87092 (diff)
ignore master & monitor when “solo all [in group]”
should fix #6193
-rw-r--r--libs/ardour/route.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 3ff30f826e..72580e0069 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -772,6 +772,11 @@ Route::set_solo (bool yn, void *src)
return;
}
+ if (is_master() || is_monitor() || is_auditioner()) {
+ DEBUG_TRACE (DEBUG::Solo, string_compose ("%1 ignore solo change (master, monitor or auditioner)\n", name()));
+ return;
+ }
+
if (_route_group && src != _route_group && _route_group->is_active() && _route_group->is_solo()) {
_route_group->foreach_route (boost::bind (&Route::set_solo, _1, yn, _route_group));
return;