mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-26 08:27:43 +01:00
[Summary] Fixed crash with an attempt to resize active loop
[Reviewed by] Paul Davis [Reviewed by QA] MKosharniy
This commit is contained in:
parent
a8d050ce06
commit
ca79e78fb8
1 changed files with 5 additions and 1 deletions
|
|
@ -4151,7 +4151,11 @@ SelectionDrag::start_grab (GdkEvent* event, Gdk::Cursor*)
|
|||
show_verbose_cursor_time (adjusted_current_frame (event));
|
||||
}
|
||||
|
||||
_original_pointer_time_axis = _editor->trackview_by_y_position (current_pointer_y ()).first->order ();
|
||||
TimeAxisView* view = _editor->trackview_by_y_position (current_pointer_y ()).first;
|
||||
|
||||
if (view) {
|
||||
_original_pointer_time_axis = view->order ();
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue