Always show selected control points.

This commit is contained in:
Jonathan Moore Liles 2008-05-01 00:29:46 -05:00
parent 01fa14f04c
commit 7a1fb271d4
1 changed files with 4 additions and 0 deletions

View File

@ -232,6 +232,10 @@ Control_Sequence::draw ( void )
if ( _highlighted )
for ( list <Sequence_Widget *>::const_iterator r = _widgets.begin(); r != _widgets.end(); r++ )
(*r)->draw_box();
else
for ( list <Sequence_Widget *>::const_iterator r = _widgets.begin(); r != _widgets.end(); r++ )
if ( (*r)->selected() )
(*r)->draw_box();
fl_pop_clip();
}