]> git.sesse.net Git - kdenlive/blobdiff - src/docclipbase.cpp
Several small adjustments for monitor switching
[kdenlive] / src / docclipbase.cpp
index 4d3a3bf02bc3e344fa4877da3173547b0cbe6037..bc399d6a7b724581e90e375b46af6cc05dc06779 100644 (file)
@@ -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;
 }