From fb00a746b35363d5c3a087724de358eaa48446b2 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Sat, 8 Mar 2008 14:10:43 -0600 Subject: [PATCH] Draw measure lines OVER control polygon. --- Control_Track.H | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Control_Track.H b/Control_Track.H index b51e3ad..983d509 100644 --- a/Control_Track.H +++ b/Control_Track.H @@ -43,8 +43,6 @@ public: Fl_Group::draw(); - timeline->draw_measure_lines( x(), y(), w(), h(), color() ); - int X, Y, W, H; fl_clip_box( x(), y(), w(), h(), X, Y, W, H ); @@ -82,6 +80,8 @@ public: fl_line_style( FL_SOLID, 0 ); + timeline->draw_measure_lines( x(), y(), w(), h(), color() ); + for ( list ::const_iterator r = _widgets.begin(); r != _widgets.end(); r++ ) (*r)->draw_box( X, Y, W, H );