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
This commit is contained in:
Ben Loftis 2022-06-17 08:05:01 -05:00
parent a92af7768d
commit 88888237ac
1 changed files with 1 additions and 7 deletions

View File

@ -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)) {