Browse Source

Timeline: Hide spacer widget that was interfering with drag and drop event delivery.

Closes #165
tags/non-daw-v1.2.0
Jonathan Moore Liles 9 years ago
parent
commit
386d293650
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      timeline/src/Timeline.C

+ 4
- 1
timeline/src/Timeline.C View File

@@ -750,8 +750,11 @@ Timeline::Timeline ( int X, int Y, int W, int H, const char* L ) : BASE( X, Y, W
panzoomer = o; 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 ); Fl_Box *spacebox = new Fl_Box( 0,0,1,1 );
/* doesn't need to be visible */
spacebox->hide();


o->end(); o->end();
o->resizable( spacebox ); o->resizable( spacebox );


Loading…
Cancel
Save