mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
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:
parent
a92af7768d
commit
88888237ac
1 changed files with 1 additions and 7 deletions
|
|
@ -679,13 +679,7 @@ RouteUI::solo_press(GdkEventButton* ev)
|
||||||
DisplaySuspender ds;
|
DisplaySuspender ds;
|
||||||
_route->solo_control()->set_value (1.0, Controllable::NoGroup);
|
_route->solo_control()->set_value (1.0, Controllable::NoGroup);
|
||||||
|
|
||||||
} else if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
|
/* } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) { do not explicitly implement Tertiary Modifier; this is the default for Momentary */
|
||||||
|
|
||||||
// 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::PrimaryModifier)) {
|
} else if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue