]> git.sesse.net Git - kdenlive/blobdiff - src/renderer.cpp
Add signal to inform when the currently displayed frame was updated
[kdenlive] / src / renderer.cpp
index 37118113fada5d57c75f4298df7f08c8710cabbe..e16c418b3c41e951496b25e0bada84dc3c0854e9 100644 (file)
@@ -1430,7 +1430,10 @@ const QString & Render::rendererName() const
 
 void Render::emitFrameNumber(double position)
 {
-    if (position == m_framePosition) return;
+    if (position == m_framePosition) {
+        emit frameUpdated((int) position);
+        return;
+    }
     m_framePosition = position;
     emit rendererPosition((int) position);
 }