From: Camila Ayres Date: Thu, 5 Sep 2024 18:25:31 +0000 (+0200) Subject: Fix talk app icon. X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~6^2~34^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=4694aae25b86413a044c25a7059b1fbaf63c7f38;p=nextcloud-desktop.git Fix talk app icon. Signed-off-by: Camila Ayres --- diff --git a/src/gui/tray/activitylistmodel.cpp b/src/gui/tray/activitylistmodel.cpp index 463aea390..d200ecf7c 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;