From 6d67b129d25368497097c6e227f39dedc71e1cb6 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Thu, 19 Jul 2012 22:39:59 +0200 Subject: [PATCH] fix warning --- data/qml/CoverImage.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/data/qml/CoverImage.qml b/data/qml/CoverImage.qml index 12e9daf4b..45c044812 100644 --- a/data/qml/CoverImage.qml +++ b/data/qml/CoverImage.qml @@ -13,6 +13,8 @@ Item { property string trackName property string artworkId + onArtworkIdChanged: print("!*!*!*!*!* artworkId", artworkId) + // The border color for the cover image property color borderColor: "black" // The border width for the cover image @@ -117,7 +119,7 @@ Item { opacity: 1 - itemBrightness + (mouseArea.containsMouse ? .2 : 0) Behavior on opacity { - NumberAnimation { easing: Easing.Linear; duration: 300 } + NumberAnimation { easing.type: Easing.Linear; duration: 300 } } }