From 5186afce06e5bf334f2f5749926fce0271effc82 Mon Sep 17 00:00:00 2001 From: bbedward Date: Mon, 15 Sep 2025 15:25:27 -0400 Subject: [PATCH] FrameAnimation instead of timer --- Widgets/DankAlbumArt.qml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Widgets/DankAlbumArt.qml b/Widgets/DankAlbumArt.qml index 10a13711..ed43ab9a 100644 --- a/Widgets/DankAlbumArt.qml +++ b/Widgets/DankAlbumArt.qml @@ -63,10 +63,8 @@ Item { onAudioLevelsChanged: updatePath() - Timer { + FrameAnimation { running: morphingBlob.visible - interval: 16 - repeat: true onTriggered: morphingBlob.updatePath() }