cancel-solo always clears all solo-state, just in case.
authorRobin Gareus <robin@gareus.org>
Tue, 6 Oct 2015 18:06:25 +0000 (20:06 +0200)
committerRobin Gareus <robin@gareus.org>
Tue, 6 Oct 2015 18:06:25 +0000 (20:06 +0200)
gtk2_ardour/ardour_ui.cc

index 727e36ed1407fe9fa2a4b7fdf9363e787a420c38..b55c50506e54c00ab78e45a40015ac13858e77fd 100644 (file)
@@ -4933,5 +4933,7 @@ ARDOUR_UI::cancel_solo ()
                } else if (_session->listening()) {
                        _session->set_listen (_session->get_routes(), false);
                }
+
+               _session->clear_all_solo_state (_session->get_routes()); // safeguard, ideally this won't do anything, check the log-window
        }
 }