mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-29 00:13:10 +01:00
Do not move the initial tempo / meter changes at 0 time when inserting time (#4313).
git-svn-id: svn://localhost/ardour2/branches/3.0@10057 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
d014c7f86c
commit
e095a93f98
1 changed files with 1 additions and 1 deletions
|
|
@ -1672,7 +1672,7 @@ void
|
|||
TempoMap::insert_time (framepos_t where, framecnt_t amount)
|
||||
{
|
||||
for (Metrics::iterator i = metrics->begin(); i != metrics->end(); ++i) {
|
||||
if ((*i)->frame() >= where) {
|
||||
if ((*i)->frame() >= where && (*i)->frame() != 0) {
|
||||
(*i)->set_frame ((*i)->frame() + amount);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue