Make mute and solo buttons more colorful.

pull/3/head
Jonathan Moore Liles 2008-07-20 16:17:17 -05:00
parent b6e0826684
commit 5091277edb
2 changed files with 3 additions and 1 deletions

View File

@ -111,7 +111,7 @@ install: all
ifneq ($(USE_DEBUG),yes)
@ echo -n "Stripping..."
@ strip $(prefix)/bin/non-daw
@ strip $(prefix)/bin/non-mixer
# @ strip $(prefix)/bin/non-mixer
@ echo "$(DONE)"
endif

View File

@ -145,6 +145,7 @@ Track::init ( void )
{
Fl_Button *o = mute_button =
new Fl_Button( 35, 28, 26, 24, "m" );
o->selection_color( fl_color_average( FL_YELLOW, FL_RED, 0.50 ) );
o->type( 1 );
o->box( FL_THIN_UP_BOX );
o->color( FL_LIGHT1 );
@ -154,6 +155,7 @@ Track::init ( void )
{
Fl_Button *o = solo_button =
new Fl_Button( 66, 28, 26, 24, "s" );
o->selection_color( fl_color_average( FL_YELLOW, FL_RED, 0.50 ) );
o->type( 1 );
o->box( FL_THIN_UP_BOX );
o->color( FL_LIGHT1 );