change default animation duration to 1 sec

This commit is contained in:
laserpants 2016-03-21 08:44:54 +03:00
parent bda0c32ac2
commit ee5d05987f
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(800);
animation->setDuration(1000);
_group.addAnimation(animation);
return animation;
}