mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
fix bug in Locations::ripple()
This commit is contained in:
parent
9766132a53
commit
c8c506f702
1 changed files with 1 additions and 1 deletions
|
|
@ -1618,7 +1618,7 @@ Locations::ripple (samplepos_t at, samplecnt_t distance, bool include_locked, bo
|
|||
{
|
||||
Glib::Threads::RWLock::WriterLock lm (_lock);
|
||||
|
||||
for (LocationList::iterator i = locations.begin(); i != locations.end(); ) {
|
||||
for (LocationList::iterator i = locations.begin(); i != locations.end(); ++i) {
|
||||
|
||||
if (!include_locked && (*i)->locked()) {
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue