From aae8753db1003ed2741aa7b9360ecce5bec336c9 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Fri, 22 Feb 2008 13:52:23 -0600 Subject: [PATCH] Don't redraw tracks twice! --- Timeline.H | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Timeline.H b/Timeline.H index 284e8a2..b4f8cdf 100644 --- a/Timeline.H +++ b/Timeline.H @@ -168,8 +168,10 @@ struct Timeline : public Fl_Group if ( damage() & FL_DAMAGE_ALL ) { Fl_Group::draw(); - draw_clip( this, X, tracks->y(), W, tracks->h() ); - draw_clip( this, X, rulers->y(), W, rulers->h() ); + +/* draw_clip( this, X, tracks->y(), W, tracks->h() ); */ +/* draw_clip( this, X, rulers->y(), W, rulers->h() ); */ + return; }