From 949e9c38682dd8ffe5575327135110bfe0ac5123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Tue, 4 Feb 2014 01:35:52 +0100 Subject: [PATCH] Port testcontainment to units.longDuration --- examples/containments/testcontainment/contents/ui/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/containments/testcontainment/contents/ui/main.qml b/examples/containments/testcontainment/contents/ui/main.qml index ada11b016..889afa3fd 100644 --- a/examples/containments/testcontainment/contents/ui/main.qml +++ b/examples/containments/testcontainment/contents/ui/main.qml @@ -177,8 +177,8 @@ Item { property real startX: mouseArea.startX/mouseArea.width property real startY: mouseArea.startY/mouseArea.height - NumberAnimation on dx { id: dxAnim; to: 0; duration: 350; easing.type: Easing.OutElastic } - NumberAnimation on dy { id: dyAnim; to: 0; duration: 350; easing.type: Easing.OutElastic } + NumberAnimation on dx { id: dxAnim; to: 0; duration: units.longDuration; easing.type: Easing.OutElastic } + NumberAnimation on dy { id: dyAnim; to: 0; duration: units.longDuration; easing.type: Easing.OutElastic } //! [fragment] fragmentShader: { "uniform lowp float qt_Opacity;" +