From f0cfdd01c8f25a977f787730430bac33ff87ff0c Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Fri, 30 May 2008 10:21:39 -0500 Subject: [PATCH] Make the sequence focus color more obvious. --- Timeline/Sequence.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Timeline/Sequence.H b/Timeline/Sequence.H index 6daa958..66e9d0b 100644 --- a/Timeline/Sequence.H +++ b/Timeline/Sequence.H @@ -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 widgets ( void ) const { return _widgets; }