Browse Source

Timeline/Control_Point: Don't draw with zero width.

tags/non-daw-v1.2.0
Jonathan Moore Liles 11 years ago
parent
commit
d9ba4bda2b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      timeline/src/Control_Point.C

+ 1
- 1
timeline/src/Control_Point.C View File

@@ -78,7 +78,7 @@ Control_Point::draw_box ( void )
else
fl_color( box_color() );

fl_pie( x() - w() / 2, y() - h() / 2, w(), h(), 0, 360 );
fl_pie( x() - ( abs_w() / 2 ), y() - ( h() / 2 ), abs_w(), h(), 0, 360 );

if ( this == Sequence_Widget::belowmouse() ||
this == Sequence_Widget::pushed() )


Loading…
Cancel
Save