mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-26 06:58:22 +01:00
deselecting a grouped track no longer deselects the entire group
I believe this to be more useful behavior than the previous state of affairs
This commit is contained in:
parent
16e1188a2f
commit
78e023fcc2
1 changed files with 1 additions and 1 deletions
|
|
@ -1155,7 +1155,7 @@ Mixer_UI::strip_button_release_event (GdkEventButton *ev, MixerStrip *strip)
|
|||
if (_selection.selected (strip)) {
|
||||
/* primary-click: toggle selection state of strip */
|
||||
if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
|
||||
_selection.remove (strip, true);
|
||||
_selection.remove (strip, false);
|
||||
} else if (_selection.axes.size() > 1) {
|
||||
/* de-select others */
|
||||
_selection.set (strip);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue