From 48886565cf3bc02e0508d2cc485be4f62289f6da Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 12 May 2020 13:08:38 -0600 Subject: fix mouse-audition playback of a given region --- gtk2_ardour/editor_selection.cc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'gtk2_ardour/editor_selection.cc') 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); + } } } -- cgit v1.2.3