small fixlet for region push/pull op, from lincoln

git-svn-id: svn://localhost/ardour2/branches/3.0@6330 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2009-12-09 19:00:28 +00:00
parent b8b55ef003
commit f18bcf0cc8

View file

@ -2165,12 +2165,10 @@ Editor::single_start_trim (RegionView& rv, nframes64_t frame_delta, bool left_di
if (region_left != 0 &&
(region_left->last_frame() > region->first_frame() || regions_touching))
{
region_left->trim_end(region->first_frame(), this);
region_left->trim_end(region->first_frame() - 1, this);
}
}
rv.region_changed (Change (LengthChanged|PositionChanged|StartChanged));
}