Browse Source

Draw selected control points in selection color.

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
5293eae6d9
2 changed files with 1 additions and 6 deletions
  1. +0
    -5
      Timeline/Control_Point.H
  2. +1
    -1
      Timeline/Sequence_Widget.H

+ 0
- 5
Timeline/Control_Point.H View File

@@ -157,9 +157,4 @@ public:
int y ( void ) const { return parent()->y() + ((float)parent()->h() * _y); }
int h ( void ) const { return 6; }

void
draw ( int X, int Y, int W, int H )
{
}

};

+ 1
- 1
Timeline/Sequence_Widget.H View File

@@ -339,7 +339,7 @@ public:
virtual void
draw_box ( void )
{
fl_draw_box( box(), x(), y(), w(), h(), _box_color );
fl_draw_box( box(), x(), y(), w(), h(), selected() ? FL_MAGENTA : _box_color );
}

virtual void


Loading…
Cancel
Save