change default animation duration to 800
This commit is contained in:
parent
ee74c140d0
commit
bda0c32ac2
|
@ -44,7 +44,7 @@ QPropertyAnimation *Ripple::animate(const QByteArray &property)
|
||||||
animation->setPropertyName(property);
|
animation->setPropertyName(property);
|
||||||
animation->setEasingCurve(QEasingCurve::OutCubic);
|
animation->setEasingCurve(QEasingCurve::OutCubic);
|
||||||
animation->setTargetObject(this);
|
animation->setTargetObject(this);
|
||||||
animation->setDuration(700);
|
animation->setDuration(800);
|
||||||
_group.addAnimation(animation);
|
_group.addAnimation(animation);
|
||||||
return animation;
|
return animation;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue