From 2e1789ba7d7a792d662528c252fe0d3d8e6d4cf7 Mon Sep 17 00:00:00 2001 From: Damocles Date: Mon, 13 Apr 2026 09:39:12 +0200 Subject: [PATCH] fix spinner animation: use delegate id instead of parent.index --- modules/OverviewBackdrop.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/OverviewBackdrop.qml b/modules/OverviewBackdrop.qml index 0e37d01..1e22124 100644 --- a/modules/OverviewBackdrop.qml +++ b/modules/OverviewBackdrop.qml @@ -132,6 +132,7 @@ PanelWindow { Repeater { model: 12 Item { + id: spinDelegate required property int index SequentialAnimation { loops: Animation.Infinite @@ -143,7 +144,7 @@ PanelWindow { NumberAnimation { id: _spin target: fx - property: "_a" + parent.index + property: "_a" + spinDelegate.index from: 0 to: 2 * Math.PI duration: 1000 + Math.random() * 2000