Always show control points when control sequence is focused.

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

View File

@ -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 <Sequence_Widget *>::const_iterator r = _widgets.begin(); r != _widgets.end(); r++ )
(*r)->draw_box();
else