summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}
}