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:
Paul Davis 2023-07-28 17:13:29 -06:00
parent 16e1188a2f
commit 78e023fcc2

View file

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