From 81a9b81e263821a8099c637e211454872ca8f653 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Thu, 26 Aug 2021 17:42:34 +0200 Subject: [PATCH] Fix warning, properly assign the easing property --- applets/krunner/contents/ui/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applets/krunner/contents/ui/main.qml b/applets/krunner/contents/ui/main.qml index e0a9ff84..f6590048 100644 --- a/applets/krunner/contents/ui/main.qml +++ b/applets/krunner/contents/ui/main.qml @@ -104,7 +104,7 @@ Item { Behavior on implicitHeight { NumberAnimation { duration: Kirigami.Units.longDuration - easing: Easing.InOutQuad + easing.type: Easing.InOutQuad } }