fix typo in last commit - move start & end, not start & start

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3302 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2008-05-01 18:15:04 +00:00
parent 18048013be
commit 88707bf3bb

View file

@ -5849,7 +5849,7 @@ Editor::insert_time (nframes64_t pos, nframes64_t frames, InsertTimeOption opt,
if ((*i)->start() >= pos) {
(*i)->set_start ((*i)->start() + frames);
if (!(*i)->is_mark()) {
(*i)->set_start ((*i)->end() + frames);
(*i)->set_end ((*i)->end() + frames);
}
moved = true;
}