From 458925dba520d6eb795daef755016f29cf77d015 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 22 Feb 2011 21:14:51 +0000 Subject: [PATCH] Fix mute visual state when reloading sessions with soloed tracks in PFL/AFL mode. git-svn-id: svn://localhost/ardour2/branches/3.0@8928 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/route_ui.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc index 6577926208..b0338ff121 100644 --- a/gtk2_ardour/route_ui.cc +++ b/gtk2_ardour/route_ui.cc @@ -965,7 +965,8 @@ RouteUI::mute_visual_state (Session* s, boost::shared_ptr r) return 0; } - if (Config->get_show_solo_mutes()) { + + if (Config->get_show_solo_mutes() && !Config->get_solo_control_is_listen_control ()) { if (r->muted ()) { /* full mute */ -- 2.30.2