mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 21:55:43 +01:00
[Summary] Fix bug in Track Header. In the past Shift+Click set SoloButton in Solo Save Mode. Now Ctrl+Click set Solo Button in Solo Save Mode (according to PRD).
[Review] Nobody
This commit is contained in:
parent
9c8bd78b5a
commit
229f5a34ef
1 changed files with 2 additions and 2 deletions
|
|
@ -432,9 +432,9 @@ RouteUI::solo_press(GdkEventButton* ev)
|
|||
_session->set_just_one_solo (_route, true);
|
||||
}
|
||||
|
||||
} else if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
|
||||
} else if (Keyboard::modifier_state_equals (ev->state, Keyboard::SecondaryModifier)) {
|
||||
|
||||
// shift-click: toggle solo isolated status
|
||||
// control-click (SecondaryModifier): toggle solo isolated status
|
||||
|
||||
_route->set_solo_isolated (!_route->solo_isolated(), this);
|
||||
delete _solo_release;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue