Browse Source

Draw inactive takes in a darker hue.

tags/non-daw-v1.1.0
Jonathan Moore Liles 16 years ago
parent
commit
131453cce9
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      Timeline/Track.C

+ 3
- 0
Timeline/Track.C View File

@@ -504,6 +504,8 @@ Track::add ( Audio_Sequence * t )
{ {
takes->insert( *t, 0 ); takes->insert( *t, 0 );


t->color( fl_color_average( FL_BLACK, FL_GRAY, 0.25f ) );

t->labeltype( FL_ENGRAVED_LABEL ); t->labeltype( FL_ENGRAVED_LABEL );


update_take_menu(); update_take_menu();
@@ -576,6 +578,7 @@ Track::sequence ( Audio_Sequence * t )
_sequence = t; _sequence = t;
pack->insert( *t, 1 ); pack->insert( *t, 1 );


t->color( FL_GRAY );
t->labeltype( FL_NO_LABEL ); t->labeltype( FL_NO_LABEL );


update_take_menu(); update_take_menu();


Loading…
Cancel
Save