diff options
Diffstat (limited to 'qmafwwatchlet/metawatch-digital.qml')
-rw-r--r-- | qmafwwatchlet/metawatch-digital.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmafwwatchlet/metawatch-digital.qml b/qmafwwatchlet/metawatch-digital.qml index 22c7833..345aab6 100644 --- a/qmafwwatchlet/metawatch-digital.qml +++ b/qmafwwatchlet/metawatch-digital.qml @@ -22,7 +22,7 @@ Rectangle { Text { anchors.fill: parent - text: player.title + text: player.title.length > 0 ? player.title : qsTr("No media"); color: "black" } } |