From 5309cf0de60bbcf2be5d75ccb2fc31d499525daa Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sun, 29 Sep 2024 02:56:26 +0200 Subject: [PATCH] fix: crop image that do not have a 1:1 aspect ratio --- src/base/BRoundedImage.qml | 1 + src/windows/notificationtoast/NotificationToasts.qml | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/BRoundedImage.qml b/src/base/BRoundedImage.qml index 45d15bc..02c448d 100644 --- a/src/base/BRoundedImage.qml +++ b/src/base/BRoundedImage.qml @@ -15,6 +15,7 @@ Rectangle { anchors.centerIn: parent anchors.margins: roundedImage.border.width visible: false + fillMode: Image.PreserveAspectCrop } MultiEffect { diff --git a/src/windows/notificationtoast/NotificationToasts.qml b/src/windows/notificationtoast/NotificationToasts.qml index 120120a..a86caa4 100644 --- a/src/windows/notificationtoast/NotificationToasts.qml +++ b/src/windows/notificationtoast/NotificationToasts.qml @@ -28,7 +28,6 @@ PopupWindow { Component.onCompleted: () => { Notifications.d.notification.connect(e => { data.insert(0, e); - //data.append(e); }); } }