From e332179ac42f85b6814b4d8fb8fa5db14479dd95 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 (cherry picked from commit 419b4cea9806e0bc401a2114e3c61ec4a9d7216d) --- src/notificationsmanager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/notificationsmanager.cpp b/src/notificationsmanager.cpp index c05a35422..ed6757cdb 100644 --- a/src/notificationsmanager.cpp +++ b/src/notificationsmanager.cpp @@ -294,6 +294,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);