]> git.sesse.net Git - kdenlive/blobdiff - src/documentchecker.cpp
Don't check duration mismatch for slideshow clips, since it is allowed (for example...
[kdenlive] / src / documentchecker.cpp
index adfb592e096b6be6b6d9d7fd25b998e57c1b59a5..e3444c03a9a88e44bb0bac539a888bb2b65d9a8c 100644 (file)
@@ -81,7 +81,7 @@ bool DocumentChecker::hasErrorInClips()
         e = m_info.item(i).toElement();
         clipType = e.attribute("type").toInt();
         if (clipType == COLOR) continue;
-        if (clipType != TEXT && clipType != IMAGE) {
+        if (clipType != TEXT && clipType != IMAGE && clipType != SLIDESHOW) {
             QString id = e.attribute("id");
             int duration = e.attribute("duration").toInt();
             int mltDuration = -1;