From a004e4a193b2b053b29df5bd41223186d6db9240 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Fri, 30 May 2008 10:15:12 -0500 Subject: [PATCH] Always show control points when control sequence is focused. --- Timeline/Control_Sequence.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Timeline/Control_Sequence.C b/Timeline/Control_Sequence.C index b454480..a4d91e3 100644 --- a/Timeline/Control_Sequence.C +++ b/Timeline/Control_Sequence.C @@ -251,7 +251,7 @@ Control_Sequence::draw ( void ) timeline->draw_measure_lines( x(), y(), w(), h(), color ); - if ( _highlighted ) + if ( _highlighted || Fl::focus() == this ) for ( list ::const_iterator r = _widgets.begin(); r != _widgets.end(); r++ ) (*r)->draw_box(); else