From 29f038573400168bbb0db4b3b7d38ca6076e6618 Mon Sep 17 00:00:00 2001 From: Pier Luigi Fiorini Date: Fri, 5 Dec 2014 20:01:27 +0100 Subject: [PATCH] Fix easing type Only easing is not enough :P --- compositor/contents/Compositor.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compositor/contents/Compositor.qml b/compositor/contents/Compositor.qml index 64d40bdb..231eff10 100644 --- a/compositor/contents/Compositor.qml +++ b/compositor/contents/Compositor.qml @@ -269,7 +269,7 @@ Rectangle { PropertyAnimation { target: windowsLayerBackground duration: units.longDuration - easing: Easing.InOutQuad + easing.type: Easing.InOutQuad properties: "opacity" } } @@ -280,19 +280,19 @@ Rectangle { PropertyAnimation { target: windowsLayerBackground duration: units.longDuration - easing: Easing.InOutQuad + easing.type: Easing.InOutQuad properties: "opacity" } PropertyAnimation { target: windowsLayout duration: units.shortDuration - easing: Easing.InOutQuad + easing.type: Easing.InOutQuad properties: "scale" } PropertyAnimation { target: windowsLayer duration: units.shortDuration - easing: Easing.InOutQuad + easing.type: Easing.InOutQuad properties: "contentX" } }