Remove jitter from region track jumping.

pull/3/head
Jonathan Moore Liles 2008-02-21 03:38:35 -06:00
parent ef305848c9
commit 64f18c7585
1 changed files with 4 additions and 2 deletions

View File

@ -229,13 +229,15 @@ Region::handle ( int m )
if ( Y > y() + h() )
{
if ( _track->next() )
_track->next()->add( this );
if ( Y > _track->next()->y() )
_track->next()->add( this );
}
else
if ( Y < y() )
{
if ( _track->prev() )
_track->prev()->add( this );
if ( Y < _track->prev()->y() + _track->prev()->h() )
_track->prev()->add( this );
}
_track->redraw();