Browse Source

Timeline: Ensure that pushed widget gets FL_RELEASE event even when being dragged unto a another track.

tags/non-daw-v1.2.0
Jonathan Moore Liles 9 years ago
parent
commit
8fbcb4eb79
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      timeline/src/Sequence.C

+ 6
- 4
timeline/src/Sequence.C View File

@@ -321,10 +321,6 @@ Sequence::handle ( int m )
/* if ( m != FL_NO_EVENT ) */
/* DMESSAGE( "%s", event_name( m ) ); */

// if ( m == FL_RELEASE )
if ( ! Fl::pushed() )
Sequence_Widget::pushed( NULL );

switch ( m )
{
case FL_KEYBOARD:
@@ -469,7 +465,13 @@ Sequence::handle ( int m )
/* DMESSAGE( "Sequence widget = %p", r ); */

if ( m == FL_RELEASE )
{
// in the case of track jumping, the sequence widget may not get the FL_RELEASE less we send it here:
if ( Sequence_Widget::pushed() )
Sequence_Widget::pushed()->handle(FL_RELEASE);
Sequence_Widget::pushed( NULL );
}

if ( r )
{


Loading…
Cancel
Save