mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
allow normal right trimming even if the start of a range is at zero
This commit is contained in:
parent
1faf1a19c6
commit
6dc4763eba
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue