stop dragged regions moving to the dropzone during autoscrolling towards the top track
This commit is contained in:
parent
c24bb4a8ee
commit
3f8583f8d6
@ -729,6 +729,11 @@ RegionMotionDrag::motion (GdkEvent* event, bool first_move)
|
||||
pair<TimeAxisView*, double> const r = _editor->trackview_by_y_position (current_pointer_y ());
|
||||
TimeAxisView* tv = r.first;
|
||||
|
||||
if (!tv && current_pointer_y() < 0) {
|
||||
/* above trackview area, autoscroll hasn't moved us since last time, nothing to do */
|
||||
return;
|
||||
}
|
||||
|
||||
if (tv && tv->view()) {
|
||||
double layer = r.second;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user