From 5013c1704ee377f54c24e7641ba940b52e1d76ce Mon Sep 17 00:00:00 2001 From: Yari Polla Date: Sat, 14 Oct 2023 20:02:05 +0200 Subject: [PATCH] components/baseitem: remove useless children push --- components/mobileshell/qml/components/BaseItem.qml | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/mobileshell/qml/components/BaseItem.qml b/components/mobileshell/qml/components/BaseItem.qml index 7378bf48..08c796cb 100644 --- a/components/mobileshell/qml/components/BaseItem.qml +++ b/components/mobileshell/qml/components/BaseItem.qml @@ -33,13 +33,11 @@ Item { onContentItemChanged: { contentItem.parent = contentItemLoader; contentItem.anchors.fill = contentItemLoader; - contentItemLoader.children.push(contentItem); } onBackgroundChanged: { background.parent = backgroundLoader; background.anchors.fill = backgroundLoader; - backgroundLoader.children.push(background); } Item {