diff --git a/gtk2_ardour/editor_mouse.cc b/gtk2_ardour/editor_mouse.cc index ad50f744ce..97cbc4a9ff 100644 --- a/gtk2_ardour/editor_mouse.cc +++ b/gtk2_ardour/editor_mouse.cc @@ -599,7 +599,7 @@ Editor::button_selection (ArdourCanvas::Item* /*item*/, GdkEvent* event, ItemTyp switch (item_type) { case RegionItem: if (press) { - if ( mouse_mode != MouseRange ) { + if (mouse_mode != MouseRange) { set_selected_regionview_from_click (press, op); } else { /* don't change the selection unless the @@ -611,6 +611,10 @@ Editor::button_selection (ArdourCanvas::Item* /*item*/, GdkEvent* event, ItemTyp set_selected_track_as_side_effect (Selection::Set); } } + } else { + if (mouse_mode != MouseRange) { + set_selected_regionview_from_click (press, op); + } } break;