From bac757d67a0c650f4d93dfbaef9ca20596a18693 Mon Sep 17 00:00:00 2001 From: Hannah von Reth Date: Tue, 12 Mar 2024 14:06:51 +0100 Subject: [PATCH] Fix status icon --- src/gui/owncloudgui.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gui/owncloudgui.cpp b/src/gui/owncloudgui.cpp index d20062a29b9..a948fb3f147 100644 --- a/src/gui/owncloudgui.cpp +++ b/src/gui/owncloudgui.cpp @@ -694,8 +694,7 @@ void ownCloudGui::updateContextMenuNeeded() void ownCloudGui::slotShowTrayMessage(const QString &title, const QString &msg, const QIcon &icon) { - // SyncResult::Problem is returns the info icon - _tray->showMessage(title, msg, icon.isNull() ? Resources::getCoreIcon(QStringLiteral("states/error")) : icon); + _tray->showMessage(title, msg, icon.isNull() ? Resources::getCoreIcon(QStringLiteral("states/information")) : icon); } void ownCloudGui::slotShowOptionalTrayMessage(const QString &title, const QString &msg, const QIcon &icon)