From: Claudio Cambra Date: Mon, 14 Nov 2022 15:00:55 +0000 (+0100) Subject: Fix ActivityList delegate warnings· X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~11^2~135^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e281c46fa59af12c846850acc0fc1b5dbecdd660;p=nextcloud-desktop.git Fix ActivityList delegate warnings· Signed-off-by: Claudio Cambra --- 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