From 8a1a6d7fe3f51cbe7465794873aea3c14100a6ff Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Thu, 28 Feb 2008 21:34:03 -0600 Subject: [PATCH] Keep scrollbars on top of timeline widget. --- Timeline.C | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Timeline.C b/Timeline.C index ea76311..3ccf420 100644 --- a/Timeline.C +++ b/Timeline.C @@ -172,6 +172,10 @@ Timeline::Timeline ( int X, int Y, int W, int H, const char* L ) : Fl_Group( X, } + /* make sure scrollbars are on top */ + add( vscroll ); + add( hscroll ); + vscroll->range( 0, tracks->h() ); redraw();