Browse Source

Hack fix for misresizing of timeline scrollbars.

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
0f162df41f
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      Timeline/Timeline.C

+ 4
- 0
Timeline/Timeline.C 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


Loading…
Cancel
Save