aboutsummaryrefslogtreecommitdiff
path: root/launcher/icons/IconList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/icons/IconList.cpp')
-rw-r--r--launcher/icons/IconList.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/icons/IconList.cpp b/launcher/icons/IconList.cpp
index 70350534..584edd69 100644
--- a/launcher/icons/IconList.cpp
+++ b/launcher/icons/IconList.cpp
@@ -395,7 +395,7 @@ QIcon IconList::getIcon(const QString &key) const
return icons[icon_index].icon();
// Fallback for icons that don't exist.
- icon_index = getIconIndex("infinity");
+ icon_index = getIconIndex("grass");
if (icon_index != -1)
return icons[icon_index].icon();
@@ -404,7 +404,7 @@ QIcon IconList::getIcon(const QString &key) const
int IconList::getIconIndex(const QString &key) const
{
- auto iter = name_index.find(key == "default" ? "infinity" : key);
+ auto iter = name_index.find(key == "default" ? "grass" : key);
if (iter != name_index.end())
return *iter;