From 2c19ddbaad3f5f5acb5307db2d9a1b428b7f676f Mon Sep 17 00:00:00 2001 From: Fabio Falsini Date: Thu, 28 Jan 2021 20:46:21 +0100 Subject: QQuickItemParticle give() method kill particle Currently removing an item connected to a particle only invalidate the particle that will be reused for the next item set. This has the effect that the new item inserted appears in the same position as the old one just removed. This patch force killing the particle to assign next item to a new particle starting from initial position. Change-Id: Ic937a6d7aea65368cceb1405bb81ef1502d988a5 Reviewed-by: Ulf Hermann (cherry picked from commit d0b1bef8b889ab852eaf906fdc9cd4219238872e) Reviewed-by: Qt Cherry-pick Bot --- src/particles/qquickitemparticle.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/particles/qquickitemparticle.cpp b/src/particles/qquickitemparticle.cpp index ce254c212d..60d368a2a3 100644 --- a/src/particles/qquickitemparticle.cpp +++ b/src/particles/qquickitemparticle.cpp @@ -165,6 +165,7 @@ void QQuickItemParticle::give(QQuickItem *item) if (data->delegate == item){ m_deletables << item; data->delegate = nullptr; + m_system->groupData[groupId]->kill(data); return; } } -- cgit v1.2.3