From a516c42fa522d79814e94a53bdcc85615f7daf2a Mon Sep 17 00:00:00 2001 From: Nydragon Date: Wed, 20 Nov 2024 11:27:20 +0100 Subject: [PATCH] chore: bring notification close icon in line with rest of the shell --- src/widgets/notifications/NotificationToast.qml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/widgets/notifications/NotificationToast.qml b/src/widgets/notifications/NotificationToast.qml index 0145468..098feef 100644 --- a/src/widgets/notifications/NotificationToast.qml +++ b/src/widgets/notifications/NotificationToast.qml @@ -49,7 +49,7 @@ MouseArea { RowLayout { id: header width: parent.width - height: 25 + height: 40 IconImage { source: toast.appIcon ? Quickshell.iconPath(toast.appIcon) : "" @@ -65,10 +65,14 @@ MouseArea { font.pointSize: 12.5 } - Button { + BButton { onClicked: toast.close() - height: 16 - width: 16 + height: 30 + width: 30 + IconImage { + anchors.fill: parent + source: Quickshell.iconPath("window-close") + } } }