Timeline: Don't add cursor regions to sequence before setting their start and length.

pull/43/head
Jonathan Moore Liles 2013-02-24 19:52:17 -08:00
parent b83c70175d
commit c7787c8ad6
1 changed files with 2 additions and 3 deletions

View File

@ -79,12 +79,11 @@ Cursor_Region::Cursor_Region ( nframes_t when, nframes_t length, const char *typ
this->label( label );
this->type( type );
timeline->add_cursor( this );
start( when );
this->length( length );
timeline->add_cursor( this );
log_create();
}