]> git.sesse.net Git - kdenlive/blobdiff - src/positionedit.cpp
Fix timecode widget sometimes emitting value changed twice causing unnecessary refresh
[kdenlive] / src / positionedit.cpp
index f03b8da3c8135a7dde1b4a4bbb7380b9de7e0fa3..aaeac222449168e8ade295294639362b566c573f 100644 (file)
@@ -46,7 +46,7 @@ PositionEdit::PositionEdit(const QString name, int pos, int min, int max, const
 
     connect(m_slider, SIGNAL(valueChanged(int)), m_display, SLOT(setValue(int)));
     connect(m_slider, SIGNAL(valueChanged(int)), this, SIGNAL(parameterChanged(int)));
-    connect(m_display, SIGNAL(editingFinished()), this, SLOT(slotUpdatePosition()));
+    connect(m_display, SIGNAL(timeCodeEditingFinished()), this, SLOT(slotUpdatePosition()));
     m_slider->setValue(pos);
 }