# HG changeset patch # User Chris Cannam # Date 1402576930 -3600 # Node ID b076cefaf7084884dbe2afe1a5432d8a7fb8ec32 # Parent 7555b8b17e6e011a3ab38590069e50d654a92382 Play pointer: Avoid disconcerting jump when dragging so pointer is at start of pane (without having it leave the pane) diff -r 7555b8b17e6e -r b076cefaf708 view/View.cpp --- a/view/View.cpp Thu Jun 12 13:14:18 2014 +0100 +++ b/view/View.cpp Thu Jun 12 13:42:10 2014 +0100 @@ -1060,6 +1060,8 @@ if (xnew > width() / 8) { m_followPlayIsDetached = false; + } else if (somethingGoingOn) { + m_followPlayIsDetached = true; } if (!somethingGoingOn && shouldScroll) {