From e281c46fa59af12c846850acc0fc1b5dbecdd660 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Mon, 14 Nov 2022 16:00:55 +0100 Subject: [PATCH] =?utf8?q?Fix=20ActivityList=20delegate=20warnings=C2=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Claudio Cambra --- src/gui/tray/ActivityList.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/tray/ActivityList.qml b/src/gui/tray/ActivityList.qml index 18e15e663..97c4a5f5d 100644 --- a/src/gui/tray/ActivityList.qml +++ b/src/gui/tray/ActivityList.qml @@ -58,8 +58,8 @@ ScrollView { } delegate: ActivityItem { - anchors.left: parent.left - anchors.right: parent.right + anchors.left: if (parent) parent.left + anchors.right: if (parent) parent.right anchors.leftMargin: controlRoot.delegateHorizontalPadding anchors.rightMargin: controlRoot.delegateHorizontalPadding -- 2.30.2