X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fprojectlist.cpp;h=3ebba4c6fa5c00fbdd50808d05d28b4f40e27a63;hb=7cd7234fe261491efe2f9e55be980c326ee0a002;hp=ce01e8281801206d05a52ef6ca029df2134d6303;hpb=80e82faa14d05c0b14e810dcc777916b0fa3f829;p=kdenlive diff --git a/src/projectlist.cpp b/src/projectlist.cpp index ce01e828..3ebba4c6 100644 --- a/src/projectlist.cpp +++ b/src/projectlist.cpp @@ -1831,11 +1831,7 @@ void ProjectList::slotAddSlideshowClip() QMap properties; properties.insert("name", dia->clipName()); - int begin = dia->begin(); - if (begin > 0) - properties.insert("resource", dia->selectedPath() + "?" + QString::number(begin)); - else - properties.insert("resource", dia->selectedPath()); + properties.insert("resource", dia->selectedPath()); properties.insert("in", "0"); properties.insert("out", QString::number(m_doc->getFramePos(dia->clipDuration()) * dia->imageCount())); properties.insert("ttl", QString::number(m_doc->getFramePos(dia->clipDuration()))); @@ -1846,7 +1842,6 @@ void ProjectList::slotAddSlideshowClip() properties.insert("luma_file", dia->lumaFile()); properties.insert("softness", QString::number(dia->softness())); properties.insert("animation", dia->animation()); - properties.insert("begin", QString::number(dia->begin())); m_doc->slotCreateSlideshowClipFile(properties, groupInfo.at(0), groupInfo.at(1)); }