From 5aabc42f093d4c9104b914f40e21f3b46f3f82c8 Mon Sep 17 00:00:00 2001 From: Camila Ayres Date: Thu, 5 Sep 2024 20:25:31 +0200 Subject: [PATCH] Fix talk app icon. Signed-off-by: Camila Ayres --- src/gui/tray/activitylistmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/tray/activitylistmodel.cpp b/src/gui/tray/activitylistmodel.cpp index 463aea390a1d4..d200ecf7cb8c8 100644 --- a/src/gui/tray/activitylistmodel.cpp +++ b/src/gui/tray/activitylistmodel.cpp @@ -228,7 +228,7 @@ QVariant ActivityListModel::data(const QModelIndex &index, int role) const const auto generateIconPath = [&]() { auto colorIconPath = QStringLiteral("image://svgimage-custom-color/");//role == DarkIconRole ? QStringLiteral("qrc:///client/theme/white/") : QStringLiteral("qrc:///client/theme/black/"); if (a._type == Activity::NotificationType && !a._talkNotificationData.userAvatar.isEmpty()) { - return QStringLiteral("image://svgimage-custom-color/talk-bordered.svg"); + return QStringLiteral("image://svgimage-custom-color/talk-app.svg"); } else if (a._type == Activity::SyncResultType) { colorIconPath.append("state-error.svg"); return colorIconPath;