]> git.sesse.net Git - kdenlive/blobdiff - src/projectlist.cpp
Fix timeline handling of objects (move them instead of changing their bounding rect
[kdenlive] / src / projectlist.cpp
index 7ccd5da7dd38e553d7d1d46c043155852a554823..2b9744db3d95f35a2317e4d75c0686b106b41a27 100644 (file)
@@ -456,7 +456,7 @@ void ProjectList::slotRefreshClipThumbnail(ProjectItem *item) {
     if (item) {
         int height = 50;
         int width = (int)(height  * m_render->dar());
-        QPixmap pix = KThumb::getImage(item->toXml(), item->referencedClip()->getClipThumbFrame(), width, height);
+        QPixmap pix = item->referencedClip()->thumbProducer()->extractImage(item->referencedClip()->getClipThumbFrame(), width, height);
         item->setIcon(0, pix);
     }
 }