Browse Source

Always show selected control points.

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
7a1fb271d4
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      Timeline/Control_Sequence.C

+ 4
- 0
Timeline/Control_Sequence.C 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();
}


Loading…
Cancel
Save