diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-06-24 11:12:11 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-06-24 11:12:11 +0100 |
| commit | 05bafe7346705a8a3f6bbae17956c54ef3295bcc (patch) | |
| tree | 970e223e618067adea9419d2211594d334137987 /src/lib/playlist.cc | |
| parent | f3fc4b2a63ccc0a4da61371b3c2b10c8e9b8247d (diff) | |
Only emit Changed when things are added to or removed from the playlist.
Diffstat (limited to 'src/lib/playlist.cc')
| -rw-r--r-- | src/lib/playlist.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc index dc87fbfab..e847e623b 100644 --- a/src/lib/playlist.cc +++ b/src/lib/playlist.cc @@ -367,8 +367,6 @@ Playlist::move_earlier (shared_ptr<Content> c) (*previous)->set_position (p + c->length_after_trim ()); c->set_position (p); sort (_content.begin(), _content.end(), ContentSorter ()); - - Changed (); } void @@ -394,8 +392,6 @@ Playlist::move_later (shared_ptr<Content> c) (*next)->set_position (c->position ()); c->set_position (p + c->length_after_trim ()); sort (_content.begin(), _content.end(), ContentSorter ()); - - Changed (); } FrameRateChange |
