allow normal right trimming even if the start of a range is at zero

This commit is contained in:
Paul Davis 2015-02-09 10:59:09 -05:00
parent 1faf1a19c6
commit 6dc4763eba

View file

@ -3376,7 +3376,7 @@ MarkerDrag::motion (GdkEvent*, bool)
of the earliest marker.
*/
if (delta < 0) {
if ((type != TrimRight) && (delta < 0)) {
delta = max (-((framecnt_t) earliest_start), delta);
}