Browse Source

Make mute and solo buttons more colorful.

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
5091277edb
2 changed files with 3 additions and 1 deletions
  1. +1
    -1
      Makefile
  2. +2
    -0
      Timeline/Track.C

+ 1
- 1
Makefile 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



+ 2
- 0
Timeline/Track.C 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 );


Loading…
Cancel
Save