diff options
-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 |