From: Jean-Baptiste Mardelle Date: Thu, 10 Nov 2011 21:56:50 +0000 (+0100) Subject: Fix timeline cursor frozen (wrongly removed line in previous commit): X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=960311221e4c4fc99a899fd635240ee1d0198ca6;p=kdenlive Fix timeline cursor frozen (wrongly removed line in previous commit): http://kdenlive.org/mantis/view.php?id=2400 --- diff --git a/src/monitor.cpp b/src/monitor.cpp index 8cfa793f..7315bb92 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 {