mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
fix deadlock-inducing failure-to-thaw during region drag (no copy)
This commit is contained in:
parent
1ccf272d58
commit
fc5143772b
1 changed files with 6 additions and 0 deletions
|
|
@ -2075,6 +2075,12 @@ RegionMoveDrag::finished_no_copy (
|
|||
}
|
||||
}
|
||||
|
||||
for (set<boost::shared_ptr<Playlist> >::iterator p = frozen_playlists.begin(); p != frozen_playlists.end(); ++p) {
|
||||
(*p)->thaw();
|
||||
}
|
||||
|
||||
_editor->do_ripple (_primary->region()->playlist(), extent_min, -drag_delta, &ripple_exclude, true);
|
||||
|
||||
/* If we've created new regions either by copying or moving
|
||||
to a new track, we want to replace the old selection with the new ones
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue