Make the sequence focus color more obvious.

This commit is contained in:
Jonathan Moore Liles 2008-05-30 10:21:39 -05:00
parent a004e4a193
commit f0cfdd01c8
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public:
void remove_selected ( void );
Fl_Color color ( void ) const { return this == Fl::focus() ? fl_color_average( FL_FOREGROUND_COLOR, Fl_Widget::color(), 0.24f ) : Fl_Widget::color(); }
Fl_Color color ( void ) const { return this == Fl::focus() ? fl_color_average( FL_FOREGROUND_COLOR, Fl_Widget::color(), 0.50f ) : Fl_Widget::color(); }
void color ( Fl_Color v ) { Fl_Widget::color( v ); }
const std::list <Sequence_Widget *> widgets ( void ) const { return _widgets; }