mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Fix region content drag direction
Fix <Control>+drag in bottom of region to move the region contents in the expected direction.
This commit is contained in:
parent
9a35f73b9e
commit
349f66f413
1 changed files with 1 additions and 2 deletions
|
|
@ -1958,8 +1958,7 @@ TrimDrag::motion (GdkEvent* event, bool first_move)
|
|||
|
||||
case ContentsTrim:
|
||||
{
|
||||
frame_delta = (adjusted_current_frame(event) - last_pointer_frame());
|
||||
// frame_delta = (last_pointer_frame() - adjusted_current_frame(event));
|
||||
frame_delta = (last_pointer_frame() - adjusted_current_frame(event));
|
||||
|
||||
for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
|
||||
i->view->move_contents (frame_delta);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue