From cb0f89ea3ab2ea8118665f75400d2df85bb1a53c Mon Sep 17 00:00:00 2001 From: David Capello Date: Fri, 2 May 2014 21:10:19 -0300 Subject: [PATCH] Fix issue with Timeline scroll: when clicking with mouse wheel the scroll jumps to other location --- src/app/ui/timeline.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/ui/timeline.cpp b/src/app/ui/timeline.cpp index a17643f19..a961baccc 100644 --- a/src/app/ui/timeline.cpp +++ b/src/app/ui/timeline.cpp @@ -284,6 +284,7 @@ bool Timeline::onProcessMessage(Message* msg) if (mouseMsg->middle() || key[KEY_SPACE]) { captureMouse(); m_state = STATE_SCROLLING; + m_oldPos = static_cast(msg)->position(); return true; }