From fd501590edfaebe64e51cbf63019760ffe47271e Mon Sep 17 00:00:00 2001 From: lucy Date: Tue, 20 Jan 2026 12:02:25 +0100 Subject: [PATCH] fix rounding issue with notificationcards --- modules/notifications/NotificationCard.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/notifications/NotificationCard.qml b/modules/notifications/NotificationCard.qml index 8ed9f1c..14d9371 100644 --- a/modules/notifications/NotificationCard.qml +++ b/modules/notifications/NotificationCard.qml @@ -30,12 +30,13 @@ Rectangle { id: notiIcon radius: notifyItem.radius - notifyItem.radius / 3 implicitWidth: 64 + color: Colors.background implicitHeight: 64 visible: notifyItem.modelData.image !== "" IconImage { source: notifyItem.modelData.image visible: notifyItem.modelData.image !== "" - implicitSize: 30 + implicitSize: 64 asynchronous: true } }