summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/editor_selection.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_selection.cc b/gtk2_ardour/editor_selection.cc
index b7ce207a0c..b93223cebe 100644
--- a/gtk2_ardour/editor_selection.cc
+++ b/gtk2_ardour/editor_selection.cc
@@ -1634,7 +1634,14 @@ Editor::region_selection_changed ()
//if regions are selected, we must always force the mouse mode to Object...
//... otherwise the user is confusingly left with selected regions that can't be manipulated.
if (!selection->regions.empty() && !internal_editing()) {
- set_mouse_mode (MouseObject, false);
+
+ /* if in MouseAudition and there's just 1 region selected
+ * (i.e. we just clicked on it), leave things as they are
+ */
+
+ if (selection->regions.size() > 1 || mouse_mode != Editing::MouseAudition) {
+ set_mouse_mode (MouseObject, false);
+ }
}
}