mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
[Summary] Fixed issue when righthand region was not selected after cut (with cut tool)
This commit is contained in:
parent
03f64023a8
commit
ff619cbdb6
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue