Merge master.
[dcpomatic.git] / src / lib / playlist.cc
index 1c268ca110a90a42f7997e94d46ffd1a13ff4483..710b9cc099ea5a9e96f6118f836c9ff1ab8c1cc9 100644 (file)
@@ -371,8 +371,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
@@ -398,6 +396,4 @@ 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 ();
 }