From 24ca8fbc261e41ae6ffe8e2d23015fc55b65ebf8 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Mardelle Date: Sat, 26 Jan 2013 16:20:37 +0100 Subject: [PATCH] Make sure to refresh monitor zone when subclip was selected: http://kdenlive.org/mantis/view.php?id=2947 --- src/monitor.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/monitor.cpp b/src/monitor.cpp index 12093fb8..fdaf02dc 100644 --- a/src/monitor.cpp +++ b/src/monitor.cpp @@ -896,6 +896,11 @@ void Monitor::slotSetClipProducer(DocClipBase *clip, QPoint zone, bool forceUpda slotActivateMonitor(); if (position == -1) position = render->seekFramePosition(); render->seek(position); + if (zone.isNull()) { + zone = m_currentClip->zone(); + m_ruler->setZone(zone.x(), zone.y()); + return; + } } } if (!zone.isNull()) { -- 2.39.2