Make mute and solo buttons more colorful.
This commit is contained in:
parent
b6e0826684
commit
5091277edb
2
Makefile
2
Makefile
|
@ -111,7 +111,7 @@ install: all
|
||||||
ifneq ($(USE_DEBUG),yes)
|
ifneq ($(USE_DEBUG),yes)
|
||||||
@ echo -n "Stripping..."
|
@ echo -n "Stripping..."
|
||||||
@ strip $(prefix)/bin/non-daw
|
@ strip $(prefix)/bin/non-daw
|
||||||
@ strip $(prefix)/bin/non-mixer
|
# @ strip $(prefix)/bin/non-mixer
|
||||||
@ echo "$(DONE)"
|
@ echo "$(DONE)"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -145,6 +145,7 @@ Track::init ( void )
|
||||||
{
|
{
|
||||||
Fl_Button *o = mute_button =
|
Fl_Button *o = mute_button =
|
||||||
new Fl_Button( 35, 28, 26, 24, "m" );
|
new Fl_Button( 35, 28, 26, 24, "m" );
|
||||||
|
o->selection_color( fl_color_average( FL_YELLOW, FL_RED, 0.50 ) );
|
||||||
o->type( 1 );
|
o->type( 1 );
|
||||||
o->box( FL_THIN_UP_BOX );
|
o->box( FL_THIN_UP_BOX );
|
||||||
o->color( FL_LIGHT1 );
|
o->color( FL_LIGHT1 );
|
||||||
|
@ -154,6 +155,7 @@ Track::init ( void )
|
||||||
{
|
{
|
||||||
Fl_Button *o = solo_button =
|
Fl_Button *o = solo_button =
|
||||||
new Fl_Button( 66, 28, 26, 24, "s" );
|
new Fl_Button( 66, 28, 26, 24, "s" );
|
||||||
|
o->selection_color( fl_color_average( FL_YELLOW, FL_RED, 0.50 ) );
|
||||||
o->type( 1 );
|
o->type( 1 );
|
||||||
o->box( FL_THIN_UP_BOX );
|
o->box( FL_THIN_UP_BOX );
|
||||||
o->color( FL_LIGHT1 );
|
o->color( FL_LIGHT1 );
|
||||||
|
|
Loading…
Reference in New Issue