From cba56ade8763644506995025381bc529ef55857f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 11 Apr 2016 09:47:13 -0400 Subject: [PATCH] fix logic for Session::solo_control_mode_changed() --- libs/ardour/session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 7fec4bb931..e42efae882 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -6117,7 +6117,7 @@ Session::listen_position_changed () void Session::solo_control_mode_changed () { - if (soloing()) { + if (soloing() || listening()) { /* We can't use ::clear_all_solo_state() here because during session loading at program startup, that will queue a call to rt_clear_all_solo_state() that will not execute until