From cd8affc255b8c983a45c14221d2eff7b6031ea7f Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Fri, 19 Dec 2014 15:08:49 +0100 Subject: [PATCH] Resepct theming when no syncs are configure --- src/gui/owncloudgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/owncloudgui.cpp b/src/gui/owncloudgui.cpp index 6b0d7b02bf..fa97ffd05f 100644 --- a/src/gui/owncloudgui.cpp +++ b/src/gui/owncloudgui.cpp @@ -267,7 +267,7 @@ void ownCloudGui::slotComputeOverallSyncStatus() _tray->setToolTip(trayMessage); } else { // undefined because there are no folders. - QIcon icon = Theme::instance()->syncStateIcon(SyncResult::Problem); + QIcon icon = Theme::instance()->syncStateIcon(SyncResult::Problem, true); _tray->setIcon( icon ); _tray->setToolTip(tr("There are no sync folders configured.")); }