From 7a1fb271d410d0c7f5c08d0f6ba3d10f951baffb Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Thu, 1 May 2008 00:29:46 -0500 Subject: [PATCH] Always show selected control points. --- Timeline/Control_Sequence.C | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Timeline/Control_Sequence.C b/Timeline/Control_Sequence.C index 3e01235..3417154 100644 --- a/Timeline/Control_Sequence.C +++ b/Timeline/Control_Sequence.C @@ -232,6 +232,10 @@ Control_Sequence::draw ( void ) if ( _highlighted ) for ( list ::const_iterator r = _widgets.begin(); r != _widgets.end(); r++ ) (*r)->draw_box(); + else + for ( list ::const_iterator r = _widgets.begin(); r != _widgets.end(); r++ ) + if ( (*r)->selected() ) + (*r)->draw_box(); fl_pop_clip(); }