diff options
Diffstat (limited to 'modules/lock/Media.qml')
| -rw-r--r-- | modules/lock/Media.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/lock/Media.qml b/modules/lock/Media.qml index f4b6365..0f0f3f4 100644 --- a/modules/lock/Media.qml +++ b/modules/lock/Media.qml @@ -11,13 +11,15 @@ import QtQuick.Layouts Item { id: root + required property var lock + anchors.left: parent.left anchors.right: parent.right implicitHeight: layout.implicitHeight Image { anchors.fill: parent - source: Players.active?.trackArtUrl ?? "" + source: root.lock.animating ? "" : (Players.active?.trackArtUrl ?? "") asynchronous: true fillMode: Image.PreserveAspectCrop |