Git commit 13535766c1b1317f06bcc013c2f81472e691a081 by Jean-Baptiste Mardel= le. Committed on 28/11/2016 at 16:21. Pushed by mardelle into branch 'Applications/16.12'. Fix timeline corruption when moving a clip by very small offset M +1 -1 src/timeline/managers/movemanager.cpp https://commits.kde.org/kdenlive/13535766c1b1317f06bcc013c2f81472e691a081 diff --git a/src/timeline/managers/movemanager.cpp b/src/timeline/managers/= movemanager.cpp index 3772437..9263e66 100644 --- a/src/timeline/managers/movemanager.cpp +++ b/src/timeline/managers/movemanager.cpp @@ -57,7 +57,7 @@ bool MoveManager::mouseMove(QMouseEvent *event, int , int) if (!m_dragMoved && event->buttons() & Qt::LeftButton) { if ((m_clickPoint - event->pos()).manhattanLength() < QApplication= ::startDragDistance()) { event->ignore(); - return false; + return true; } m_dragMoved =3D true; }