]> git.sesse.net Git - kdenlive/commitdiff
real fix for focus issue:
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Mon, 25 May 2009 18:37:44 +0000 (18:37 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Mon, 25 May 2009 18:37:44 +0000 (18:37 +0000)
http://www.kdenlive.org:80/mantis/view.php?id=848

svn path=/trunk/kdenlive/; revision=3418

src/monitor.cpp

index 39603b7a542f83854402037e0f58feeb50cc4af2..046a70f8f5f8c439cf93965bc880dc5194a00157 100644 (file)
@@ -460,7 +460,6 @@ void Monitor::slotSeek(int pos)
     render->seekToFrame(pos);
     emit renderPosition(m_position);
     m_timePos->setText(m_monitorManager->timecode().getTimecodeFromFrames(m_position));
-    m_timePos->clearFocus();
 }
 
 void Monitor::checkOverlay()
@@ -579,6 +578,7 @@ void Monitor::seekCursor(int pos)
     m_position = pos;
     m_timePos->setText(m_monitorManager->timecode().getTimecodeFromFrames(pos));
     m_ruler->slotNewValue(pos);
+    m_timePos->clearFocus();    
 }
 
 void Monitor::rendererStopped(int pos)