mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-14 02:26:39 +01:00
fix assignment of Region::_last_length in Region::set_length_internal()
this member is always supposed to give the previous length (before the most recent change to either extent or position)
This commit is contained in:
parent
decd6e6f70
commit
00a1b7cb24
1 changed files with 1 additions and 1 deletions
|
|
@ -495,7 +495,7 @@ Region::set_length_internal (timecnt_t const & len)
|
|||
|
||||
l.set_position (position());
|
||||
|
||||
_last_length = l;
|
||||
_last_length = _length;
|
||||
_length = l;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue