From 584d8095eeeaa785b6e013c105d3d5f94666b10b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 8 May 2015 14:11:43 -0400 Subject: [PATCH] totally bizarre and incorrect solo/mute behaviour for Tracks (ONLY) --- libs/ardour/route.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 18dec7c8b9..be1ff3de88 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -833,6 +833,10 @@ Route::set_solo (bool yn, void *src) solo_changed (true, src); /* EMIT SIGNAL */ _solo_control->Changed (); /* EMIT SIGNAL */ } + + if (yn && Profile->get_trx()) { + set_mute (false, src); + } } void -- 2.30.2