X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fdocclipbase.cpp;h=bc399d6a7b724581e90e375b46af6cc05dc06779;hb=1aac796b291b5e0061f94665f79d734e559f2189;hp=4d3a3bf02bc3e344fa4877da3173547b0cbe6037;hpb=c8049387ebe8c3fafc4e26aafe2df4f3fab79915;p=kdenlive diff --git a/src/docclipbase.cpp b/src/docclipbase.cpp index 4d3a3bf0..bc399d6a 100644 --- a/src/docclipbase.cpp +++ b/src/docclipbase.cpp @@ -649,6 +649,11 @@ Mlt::Producer *DocClipBase::getCloneProducer() } if (prod) { adjustProducerProperties(prod, getId() + "_", false, false); + if (!m_properties.contains("proxy_out")) { + // Adjust length in case... + prod->set("length", m_properties.value("duration").toInt()); + prod->set("out", m_properties.value("out").toInt()); + } } return prod; }