Nothing much.

pull/3/head
Jonathan Moore Liles 2008-02-28 23:14:40 -06:00
parent 8a1a6d7fe3
commit 6d8f612480
2 changed files with 2 additions and 1 deletions

View File

@ -87,6 +87,7 @@ Audio_Track::handle ( int m )
return 0;
}
// FIXME: account for width of track header.
Region *r = new Region( c, this, timeline->xoffset + timeline->x_to_ts( Fl::event_x() ) );
redraw();

View File

@ -87,7 +87,7 @@ Timeline::Timeline ( int X, int Y, int W, int H, const char* L ) : Fl_Group( X,
Fl_Scrollbar *o = new Fl_Scrollbar( X + W - 18, Y, 18, H - 18 );
o->type( FL_VERTICAL );
o->step( 10 );
// o->step( 10 );
o->callback( cb_vscroll, 0 );
vscroll = o;
}