From bda0c32ac266b969b73ab80ff9bb21c90b57a9ed Mon Sep 17 00:00:00 2001 From: laserpants Date: Mon, 21 Mar 2016 08:39:11 +0300 Subject: [PATCH] change default animation duration to 800 --- lib/ripple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ripple.cpp b/lib/ripple.cpp index f5d00ad..fee00c1 100644 --- a/lib/ripple.cpp +++ b/lib/ripple.cpp @@ -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; }