From 419b4cea9806e0bc401a2114e3c61ec4a9d7216d Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 14 Aug 2023 17:13:20 -0400 Subject: [PATCH] Ensure that the notification avatar is drawn with no pen --- src/notificationsmanager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/notificationsmanager.cpp b/src/notificationsmanager.cpp index 27e7eaa5d..7b3bf8044 100644 --- a/src/notificationsmanager.cpp +++ b/src/notificationsmanager.cpp @@ -292,6 +292,7 @@ QPixmap NotificationsManager::createNotificationImage(const QImage &icon, NeoCha QPainter painter(&roundedImage); painter.setRenderHint(QPainter::SmoothPixmapTransform); + painter.setPen(Qt::NoPen); // Fill background for transparent avatars painter.setBrush(Qt::white);