From 02f73fe11d87baa934534cf57f129b852a1f5443 Mon Sep 17 00:00:00 2001 From: Chris Josten Date: Sat, 26 Sep 2020 03:22:55 +0200 Subject: [PATCH] Fix user icons displaying outside their delegate --- qml/components/UserGridDelegate.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/qml/components/UserGridDelegate.qml b/qml/components/UserGridDelegate.qml index e917bde..ef94996 100644 --- a/qml/components/UserGridDelegate.qml +++ b/qml/components/UserGridDelegate.qml @@ -10,6 +10,7 @@ GridItem { anchors.fill: parent source: root.image ? root.image : "image://theme/icon-m-contact?" + ((root.highlighted || root.down) ? Theme.highlightColor : Theme.primaryColor) fillMode: Image.PreserveAspectCrop + clip: true } Rectangle { anchors.fill: parent