mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-22 06:36:29 +01:00
Splice mode: exclude newly-added regions from being shuffled
When adding regions in splice mode, exclude the region being added from possibly being shuffled. I don't know whether this might have some other adverse effects, but it fixes an obvious defect in 'Splice' mode where newly-recorded regions 'jump' to the playhead position when recording stops, and since splice mode is pretty much broken anyway, I don't think it can make matters any worse.
This commit is contained in:
parent
a7af42716f
commit
00b425b4ba
1 changed files with 1 additions and 1 deletions
|
|
@ -706,7 +706,7 @@ Playlist::flush_notifications (bool from_undo)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
possibly_splice_unlocked (position, (pos + length) - position, boost::shared_ptr<Region>());
|
possibly_splice_unlocked (position, (pos + length) - position, region);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue