From 8bdc54cc673a69fb6d37d6ca6478f5812a6e6cd5 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 be7174f240..34338b1631 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