summaryrefslogtreecommitdiffstats
path: root/gui/pages/global/AccountListPage.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/pages/global/AccountListPage.h')
-rw-r--r--gui/pages/global/AccountListPage.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/gui/pages/global/AccountListPage.h b/gui/pages/global/AccountListPage.h
index fd2c96e3..cc695614 100644
--- a/gui/pages/global/AccountListPage.h
+++ b/gui/pages/global/AccountListPage.h
@@ -42,7 +42,12 @@ public:
}
QIcon icon() const override
{
- return QIcon::fromTheme("noaccount");
+ auto icon = QIcon::fromTheme("accounts");
+ if(icon.isNull())
+ {
+ icon = QIcon::fromTheme("noaccount");
+ }
+ return icon;
}
QString id() const override
{