From ecadb71e1455aa76b2415953dc8680cd0d70689e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 17 Apr 2011 15:34:26 +0000 Subject: [PATCH] Extend range selections using the selected tracks, rather than all tracks. git-svn-id: svn://localhost/ardour2/branches/3.0@9362 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index 288802a5a7..252c03a8ac 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -231,7 +231,7 @@ Editor::move_range_selection_start_or_end_to_region_boundary (bool move_end, boo pos += dir; } - framepos_t const target = get_region_boundary (pos, dir, false, false); + framepos_t const target = get_region_boundary (pos, dir, true, false); if (target < 0) { return; }