Don't forget to journal random color picked at track creation.

This commit is contained in:
Jonathan Moore Liles 2008-04-26 07:07:39 -05:00
parent 55a1e60484
commit c4812d0ade
2 changed files with 2 additions and 4 deletions

View File

@ -808,10 +808,6 @@ Timeline::handle ( int m )
t->track( o ); t->track( o );
/* t->add( new Control_Sequence( t ); */
t->color( (Fl_Color)rand() );
Loggable::block_end(); Loggable::block_end();
} }

View File

@ -232,6 +232,8 @@ Track::Track ( const char *L, int channels ) :
if ( L ) if ( L )
name( L ); name( L );
color( (Fl_Color)rand() );
configure_inputs( channels ); configure_inputs( channels );
configure_outputs( channels ); configure_outputs( channels );