From ff619cbdb6b12442ceca6f0294f4df4bdd1c2f65 Mon Sep 17 00:00:00 2001 From: GZharun Date: Tue, 9 Dec 2014 15:37:09 +0200 Subject: [PATCH] [Summary] Fixed issue when righthand region was not selected after cut (with cut tool) --- 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 0d1bec2a5b..fff02ca3bb 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -245,7 +245,7 @@ Editor::split_regions_at (framepos_t where, RegionSelection& regions) // select only those regions which are on the right side of the cut RegionSelection::iterator iter = latest_regionviews.begin(); for (; iter != latest_regionviews.end(); ++iter) { - if (where <= (*iter)->region()->start() ) { + if (where <= (*iter)->region()->position() ) { regions_to_select.push_back(*iter); } }