From 297d4b4196c9bd1d9c4dd422dd88aaec620038d6 Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Sat, 16 Oct 2021 00:42:01 +0200 Subject: NOISSUE continue the debranding --- launcher/icons/IconList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'launcher/icons/IconList.cpp') 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; -- cgit