From 386d29365069fecbc77b05fc2a1e959bcdf83715 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Mon, 21 Sep 2015 17:34:17 -0700 Subject: [PATCH] Timeline: Hide spacer widget that was interfering with drag and drop event delivery. Closes #165 --- timeline/src/Timeline.C | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/timeline/src/Timeline.C b/timeline/src/Timeline.C index 42100ce..1c83376 100644 --- a/timeline/src/Timeline.C +++ b/timeline/src/Timeline.C @@ -750,8 +750,11 @@ Timeline::Timeline ( int X, int Y, int W, int H, const char* L ) : BASE( X, Y, W panzoomer = o; } - + + /* this is used to define the sizing limits of the enclosing Fl_Tile */ Fl_Box *spacebox = new Fl_Box( 0,0,1,1 ); + /* doesn't need to be visible */ + spacebox->hide(); o->end(); o->resizable( spacebox );