Don't redraw tracks twice!

This commit is contained in:
Jonathan Moore Liles 2008-02-22 13:52:23 -06:00
parent 2ecd28029b
commit aae8753db1
1 changed files with 4 additions and 2 deletions

View File

@ -168,8 +168,10 @@ struct Timeline : public Fl_Group
if ( damage() & FL_DAMAGE_ALL ) if ( damage() & FL_DAMAGE_ALL )
{ {
Fl_Group::draw(); 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; return;
} }