diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2012-01-03 21:39:43 +0100 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2012-01-03 21:39:43 +0100 |
commit | ecbae703556cd140e096be767f18343bb6b88d88 (patch) | |
tree | 3f4aa6fd80b5e4e5b71172ef7aff80b3fbf21bf9 | |
parent | d114dd1b289934c9c8d034622e79e0b913062b19 (diff) | |
download | sowatch-ecbae703556cd140e096be767f18343bb6b88d88.tar.gz sowatch-ecbae703556cd140e096be767f18343bb6b88d88.zip |
fix qmafwwatchlet title
-rw-r--r-- | qmafwwatchlet/metawatch-digital.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qmafwwatchlet/metawatch-digital.qml b/qmafwwatchlet/metawatch-digital.qml index e5a6eb4..16dc85e 100644 --- a/qmafwwatchlet/metawatch-digital.qml +++ b/qmafwwatchlet/metawatch-digital.qml @@ -11,12 +11,13 @@ Rectangle { anchors.top: parent.top anchors.left: parent.left anchors.right: parent.right - visible: player.mediaArt.length == 0 - text: qsTr("Music") + visible: mediaart.status != Image.Ready + text: qsTr("Now playing") icon.source: "icon.png" } Image { + id: mediaart anchors.fill: parent fillMode: Image.PreserveAspectFit smooth: true |