Hack fix for misresizing of timeline scrollbars.

pull/3/head
Jonathan Moore Liles 2008-04-26 05:17:47 -05:00
parent 155b9464c2
commit 0f162df41f
1 changed files with 4 additions and 0 deletions

View File

@ -411,6 +411,10 @@ Timeline::resize ( int X, int Y, int W, int H )
/* why is this necessary? */
rulers->resize( Track::width(), 0, W - Track::width() - vscroll->w(), rulers->h() );
/* why is THIS necessary? */
hscroll->resize( 0, H - 18, hscroll->w(), 18 );
vscroll->size( vscroll->w(), H - 18 );
}
void