Don't redraw tracks twice!
This commit is contained in:
parent
2ecd28029b
commit
aae8753db1
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue