summaryrefslogtreecommitdiffstats
path: root/src/corelib/animation
diff options
context:
space:
mode:
authorThierry Bastian <thierry.bastian@nokia.com>2009-08-04 15:03:15 +0200
committerThierry Bastian <thierry.bastian@nokia.com>2009-08-04 15:07:06 +0200
commit30e3a39ca2e5e1204cc123dce2f2921d8fda620d (patch)
tree4a44071a338bd52747d4367093f49e2caf15c555 /src/corelib/animation
parentb6275b9dd1a852c86b22b354bfae3c98c8191fda (diff)
QParallelAnimationGroup pause resume fixed
If you resumed a parallel animation group, it would always restart (ie. stop and start) the animation which would reset its current time to 0 and trigger flickering. autotest included. Task-Number: 259102
Diffstat (limited to 'src/corelib/animation')
-rw-r--r--src/corelib/animation/qparallelanimationgroup.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/corelib/animation/qparallelanimationgroup.cpp b/src/corelib/animation/qparallelanimationgroup.cpp
index 5e4b0d2a74..8aa04a4d4d 100644
--- a/src/corelib/animation/qparallelanimationgroup.cpp
+++ b/src/corelib/animation/qparallelanimationgroup.cpp
@@ -214,7 +214,8 @@ void QParallelAnimationGroup::updateState(QAbstractAnimation::State oldState,
d->connectUncontrolledAnimations();
for (int i = 0; i < d->animations.size(); ++i) {
QAbstractAnimation *animation = d->animations.at(i);
- animation->stop();
+ if (oldState == Stopped)
+ animation->stop();
animation->setDirection(d->direction);
animation->start();
}