Skip to content

Commit

Permalink
Fix status icon
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOneRing committed Mar 12, 2024
1 parent 5df49cf commit bac757d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/gui/owncloudgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit bac757d

Please sign in to comment.