From 87de4cac546a70345ea550388f62093e5957aca1 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Mardelle Date: Wed, 20 Jul 2011 07:57:36 +0000 Subject: [PATCH] Don't check duration mismatch for slideshow clips, since it is allowed (for example with loop enabled) svn path=/trunk/kdenlive/; revision=5797 --- src/documentchecker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documentchecker.cpp b/src/documentchecker.cpp index adfb592e..e3444c03 100644 --- a/src/documentchecker.cpp +++ b/src/documentchecker.cpp @@ -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; -- 2.39.2