Fix talk app icon.
authorCamila Ayres <hello@camilasan.com>
Thu, 5 Sep 2024 18:25:31 +0000 (20:25 +0200)
committerMatthieu Gallien <matthieu.gallien@nextcloud.com>
Fri, 6 Sep 2024 08:55:45 +0000 (10:55 +0200)
Signed-off-by: Camila Ayres <hello@camilasan.com>
src/gui/tray/activitylistmodel.cpp

index 463aea390a1d4aac7f887e56e77970542acf4cb4..d200ecf7cb8c859b0686cb212b1f228334beff8d 100644 (file)
@@ -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;