]> git.sesse.net Git - kdenlive/blobdiff - src/renderer.cpp
Use project aspect ratio for clip properties dialog thumbnail, fix problem with extra...
[kdenlive] / src / renderer.cpp
index 0ef31973056f3c4b109a1065234f9c710afed426..9698084d8de5aeb9c1bf0c9c079ebc711f4fe118 100644 (file)
@@ -269,7 +269,7 @@ QPixmap Render::extractFrame(int frame_position, int width, int height)
     if (width == -1) {
         width = renderWidth();
         height = renderHeight();
-    }
+    } else if (width % 2 == 1) width++;
     QPixmap pix(width, height);
     if (!m_mltProducer) {
         pix.fill(Qt::black);