mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
fix drags crossing automation lanes.
This commit is contained in:
parent
1580c6d635
commit
b90c38639a
1 changed files with 3 additions and 1 deletions
|
|
@ -823,7 +823,9 @@ RegionMotionDrag::motion (GdkEvent* event, bool first_move)
|
||||||
*/
|
*/
|
||||||
delta_layer = current_pointer_layer - _last_pointer_layer;
|
delta_layer = current_pointer_layer - _last_pointer_layer;
|
||||||
|
|
||||||
} else if (current_pointer_y() >= 0 && _last_pointer_time_axis_view >= 0) {
|
}
|
||||||
|
/* for automation lanes, there is a TimeAxisView but no ->view() */
|
||||||
|
else if (!tv && current_pointer_y() >= 0 && _last_pointer_time_axis_view >= 0) {
|
||||||
/* Moving into the drop-zone..
|
/* Moving into the drop-zone..
|
||||||
*
|
*
|
||||||
* TODO allow moving further down in drop-zone:
|
* TODO allow moving further down in drop-zone:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue