summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-04-28 01:37:38 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-04-28 01:37:38 +0000
commit57f01f2d66ed0e32dd13b6f7bfd9771b46d69ade (patch)
treeaf87df2235a50d30f982a16f9b223926990eb738 /libs
parent6dac4da98344ed8ce609a4e7d567ef2f9fbb9b31 (diff)
notify about changes to solo-isolated state
git-svn-id: svn://localhost/ardour2/branches/3.0@7010 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/route.cc2
1 files changed, 2 insertions, 0 deletions
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);
}
}