mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-01 03:17:39 +01:00
stop dragged regions moving to the dropzone during autoscrolling towards the top track
This commit is contained in:
parent
07cae46369
commit
05bd709666
1 changed files with 5 additions and 0 deletions
|
|
@ -725,6 +725,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…
Add table
Add a link
Reference in a new issue