From bdf8c3730680f50c29da7e2e8880abb7b0cb9736 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 8 May 2015 14:57:49 -0400 Subject: [PATCH] add comment --- libs/ardour/route.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 34338b1631..ad73d35056 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -834,6 +834,10 @@ Route::set_solo (bool yn, void *src) _solo_control->Changed (); /* EMIT SIGNAL */ } + /* XXX TRACKS DEVELOPERS: THIS LOGIC SUGGESTS THAT YOU ARE NOT AWARE OF + Config->get_solo_mute_overrride(). + */ + if (yn && Profile->get_trx()) { set_mute (false, src); }