From a9605c94bb2bb8f285af8d7d14a766eb8ccc75cc Mon Sep 17 00:00:00 2001 From: Johannes Hilden Date: Sun, 15 Oct 2017 14:46:15 +0300 Subject: [PATCH] Adjust transition duration value --- components/qtmaterialautocomplete_internal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/qtmaterialautocomplete_internal.cpp b/components/qtmaterialautocomplete_internal.cpp index a29f9d2..51e3acc 100644 --- a/components/qtmaterialautocomplete_internal.cpp +++ b/components/qtmaterialautocomplete_internal.cpp @@ -53,7 +53,7 @@ QtMaterialAutoCompleteStateMachine::QtMaterialAutoCompleteStateMachine(QWidget * QPropertyAnimation *animation; animation = new QPropertyAnimation(effect, "opacity", this); - animation->setDuration(140); + animation->setDuration(240); addDefaultAnimation(animation); transition = new QSignalTransition(animation, SIGNAL(finished()));