change default animation duration to 800

This commit is contained in:
laserpants 2016-03-21 08:39:11 +03:00
parent ee74c140d0
commit bda0c32ac2
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ QPropertyAnimation *Ripple::animate(const QByteArray &property)
animation->setPropertyName(property);
animation->setEasingCurve(QEasingCurve::OutCubic);
animation->setTargetObject(this);
animation->setDuration(700);
animation->setDuration(800);
_group.addAnimation(animation);
return animation;
}