]> git.sesse.net Git - kdenlive/blobdiff - src/monitor.cpp
Show full log if there is a problem with dvd creation
[kdenlive] / src / monitor.cpp
index 5daa2c771807229ff38e3ea2aca6ad00ac90c284..bc3cd477fef30aeeda426a94079541251311f61d 100644 (file)
@@ -580,7 +580,13 @@ void Monitor::seekCursor(int pos)
 
 void Monitor::rendererStopped(int pos)
 {
-    //int rulerPos = (int)(pos * m_scale);
+    if (m_currentClip != NULL && m_playAction->isChecked()) {
+        // Clip monitor
+        if (pos >= m_length - 1) {
+            slotStart();
+            return;
+        }
+    }
     m_ruler->slotNewValue(pos);
     m_position = pos;
     checkOverlay();