From 57f01f2d66ed0e32dd13b6f7bfd9771b46d69ade Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 28 Apr 2010 01:37:38 +0000 Subject: [PATCH] notify about changes to solo-isolated state git-svn-id: svn://localhost/ardour2/branches/3.0@7010 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/route.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 89dbf3fcd2..392ac7b0ca 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -659,9 +659,11 @@ Route::set_solo_isolated (bool yn, void *src) if (yn) { _solo_isolated++; _mute_master->clear_muted_by_others (); + solo_isolated_changed (src); } else { if (_solo_isolated > 0) { _solo_isolated--; + solo_isolated_changed (src); } }