From 22cc7e138d5274db607567c602d57db842309625 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Wed, 2 Dec 2009 09:10:16 +1000 Subject: Fix jumpy EaseFollow animations Task-number: QTBUG-5766 --- src/declarative/util/qmleasefollow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/declarative/util/qmleasefollow.cpp b/src/declarative/util/qmleasefollow.cpp index b326f63..50758f4 100644 --- a/src/declarative/util/qmleasefollow.cpp +++ b/src/declarative/util/qmleasefollow.cpp @@ -124,7 +124,7 @@ bool QmlEaseFollowPrivate::recalc() vp = velocity; sp = 0; sd = s; - } else if (tf > (maximumEasingTime / 1000.)) { + } else if (maximumEasingTime != -1 && tf > (maximumEasingTime / 1000.)) { qreal met = maximumEasingTime / 1000.; td = tf - met; -- cgit v0.12