From 88888237ac47ecb2105fcc0b95fb564ec617c7ad Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Fri, 17 Jun 2022 08:05:01 -0500 Subject: [PATCH] modifiers: remove shortcut for solo isolate * you should not be able to invisibly change a solo 'mode' from a modified click * we want to use shift+click for momentary operation, anyway --- gtk2_ardour/route_ui.cc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc index 17d10a0d15..be172bea63 100644 --- a/gtk2_ardour/route_ui.cc +++ b/gtk2_ardour/route_ui.cc @@ -679,13 +679,7 @@ RouteUI::solo_press(GdkEventButton* ev) DisplaySuspender ds; _route->solo_control()->set_value (1.0, Controllable::NoGroup); - } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) { - - // shift-click: toggle solo isolated status - - _route->solo_isolate_control()->set_value (_route->solo_isolate_control()->get_value() ? 0.0 : 1.0, Controllable::UseGroup); - delete _solo_release; - _solo_release = 0; +/* } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) { do not explicitly implement Tertiary Modifier; this is the default for Momentary */ } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {