From 131453cce9be5db6c6672cab207dc0f61474104b Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Sat, 6 Dec 2008 15:45:37 -0600 Subject: [PATCH] Draw inactive takes in a darker hue. --- Timeline/Track.C | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Timeline/Track.C b/Timeline/Track.C index 3b76f50..b863270 100644 --- a/Timeline/Track.C +++ b/Timeline/Track.C @@ -504,6 +504,8 @@ Track::add ( Audio_Sequence * t ) { takes->insert( *t, 0 ); + t->color( fl_color_average( FL_BLACK, FL_GRAY, 0.25f ) ); + t->labeltype( FL_ENGRAVED_LABEL ); update_take_menu(); @@ -576,6 +578,7 @@ Track::sequence ( Audio_Sequence * t ) _sequence = t; pack->insert( *t, 1 ); + t->color( FL_GRAY ); t->labeltype( FL_NO_LABEL ); update_take_menu();