diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/playlist.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc index e847e623b..df3e63303 100644 --- a/src/lib/playlist.cc +++ b/src/lib/playlist.cc @@ -362,6 +362,7 @@ Playlist::move_earlier (shared_ptr<Content> c) if (previous == _content.end ()) { return; } + Time const p = (*previous)->position (); (*previous)->set_position (p + c->length_after_trim ()); @@ -390,7 +391,7 @@ Playlist::move_later (shared_ptr<Content> c) Time const p = (*next)->position (); (*next)->set_position (c->position ()); - c->set_position (p + c->length_after_trim ()); + c->set_position (c->position() + c->length_after_trim ()); sort (_content.begin(), _content.end(), ContentSorter ()); } |
