mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
fix odd double conditional
This commit is contained in:
parent
3c58a674c5
commit
eab3c57b83
1 changed files with 1 additions and 3 deletions
|
|
@ -5638,9 +5638,7 @@ void
|
||||||
ARDOUR_UI::cancel_solo ()
|
ARDOUR_UI::cancel_solo ()
|
||||||
{
|
{
|
||||||
if (_session) {
|
if (_session) {
|
||||||
if (_session) {
|
_session->set_controls (route_list_to_control_list (_session->get_routes(), &Stripable::solo_control), 0.0, Controllable::NoGroup);
|
||||||
_session->set_controls (route_list_to_control_list (_session->get_routes(), &Stripable::solo_control), 0.0, Controllable::NoGroup);
|
|
||||||
}
|
|
||||||
_session->clear_all_solo_state (_session->get_routes()); // safeguard, ideally this won't do anything, check the log-window
|
_session->clear_all_solo_state (_session->get_routes()); // safeguard, ideally this won't do anything, check the log-window
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue