From 1ff1bfd2d8b7c02532d00cf20b971dcf29816f60 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Mardelle Date: Thu, 10 Nov 2011 23:01:13 +0100 Subject: [PATCH] Fix timeline cursor frozen (wrongly removed line in previous commit): http://kdenlive.org/mantis/view.php?id=2400 --- src/monitor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/monitor.cpp b/src/monitor.cpp index 7d202c9b..88184ff4 100644 --- a/src/monitor.cpp +++ b/src/monitor.cpp @@ -183,6 +183,7 @@ Monitor::Monitor(QString name, MonitorManager *manager, QString profile, QWidget connect(render, SIGNAL(rendererPosition(int)), this, SLOT(seekCursor(int))); if (name != "clip") { + connect(render, SIGNAL(rendererPosition(int)), this, SIGNAL(renderPosition(int))); connect(render, SIGNAL(durationChanged(int)), this, SIGNAL(durationChanged(int))); connect(m_ruler, SIGNAL(zoneChanged(QPoint)), this, SIGNAL(zoneUpdated(QPoint))); } else { -- 2.39.2