Fixed start scrolling timer.

--HG--
branch : develop
This commit is contained in:
dismine 2014-10-17 16:51:34 +02:00
parent 9839b6b331
commit 958aa869df

View file

@ -144,7 +144,10 @@ bool GraphicsViewZoom::eventFilter(QObject *object, QEvent *event)
_numScheduledScalings = numSteps; // previously scheduled scalings
}
anim->start();
if (anim->state() != QTimeLine::Running)
{
anim->start();
}
return true;
}
}