mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-15 18:06:06 +01:00
Fix setting of location start position. Fixes #3090.
git-svn-id: svn://localhost/ardour2/branches/3.0@6984 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
64a7e9b0a9
commit
f29c96c188
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ Location::set_start (nframes64_t s)
|
|||
return -1;
|
||||
}
|
||||
|
||||
if (((is_auto_punch() || is_auto_loop()) && s >= _end) || s > _end) {
|
||||
if (((is_auto_punch() || is_auto_loop()) && s >= _end) || (!is_mark() && s > _end)) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue