mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
fix marker positions after an aborted ripple drag
This commit is contained in:
parent
23aa663f9d
commit
32b77f549f
1 changed files with 4 additions and 0 deletions
|
|
@ -2217,6 +2217,10 @@ RegionMotionDrag::aborted (bool)
|
|||
rv->move (-_total_x_delta, 0);
|
||||
rv->set_height (rtv->view()->child_height ());
|
||||
}
|
||||
|
||||
for (vector<ArdourMarker*>::iterator m = ripple_markers.begin(); m != ripple_markers.end(); ++m) {
|
||||
(*m)->the_item().move (Duple (-_total_x_delta, 0.));
|
||||
}
|
||||
}
|
||||
|
||||
/** @param b true to brush, otherwise false.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue