set a start value so it can go backwards

svn path=/trunk/KDE/kdelibs/; revision=1038849
This commit is contained in:
Aaron J. Seigo 2009-10-22 04:00:02 +00:00
parent fd48743847
commit a9a4fc471b

View File

@ -23,6 +23,8 @@
#include <QGraphicsRotation>
#include <kdebug.h>
namespace Plasma
{
@ -123,8 +125,9 @@ QPropertyAnimation *RotationAnimation::render(QObject *parent)
transformation.append(d->rotation);
m_object->setTransformations(transformation);
QPropertyAnimation *rotationAnimation= new QPropertyAnimation(d->rotation,
"angle", m_object);
QPropertyAnimation *rotationAnimation= new QPropertyAnimation(d->rotation, "angle", m_object);
rotationAnimation->setStartValue(0);
kDebug() << "angle is" << angle();
rotationAnimation->setEndValue(angle());
rotationAnimation->setDuration(duration());