mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
when dragging multiple markers, move them all, and move them correctly
This commit is contained in:
parent
31e6f73bd3
commit
6e4ad5fc47
1 changed files with 3 additions and 1 deletions
|
|
@ -3384,7 +3384,9 @@ MarkerDrag::motion (GdkEvent*, bool)
|
|||
but without actually moving the real Location (yet)
|
||||
*/
|
||||
|
||||
_marker->set_position (copy_location->start(), copy_location->end());
|
||||
for (vector<Marker*>::iterator m = x->markers.begin(); m != x->markers.end(); ++m) {
|
||||
(*m)->set_position (copy_location->start(), copy_location->end());
|
||||
}
|
||||
}
|
||||
|
||||
assert (!_copied_locations.empty());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue