diff options
author | Petr Mrázek <peterix@gmail.com> | 2021-10-16 00:42:01 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2021-10-21 00:47:53 +0200 |
commit | 297d4b4196c9bd1d9c4dd422dd88aaec620038d6 (patch) | |
tree | 830f24d664002967d3923c30ac9d076472e47d4c /launcher/icons/IconList.cpp | |
parent | e12a7698005ea6c8da5ed8deb66993d628ab1a1f (diff) | |
download | PrismLauncher-297d4b4196c9bd1d9c4dd422dd88aaec620038d6.tar.gz PrismLauncher-297d4b4196c9bd1d9c4dd422dd88aaec620038d6.tar.bz2 PrismLauncher-297d4b4196c9bd1d9c4dd422dd88aaec620038d6.zip |
NOISSUE continue the debranding
Diffstat (limited to 'launcher/icons/IconList.cpp')
-rw-r--r-- | launcher/icons/IconList.cpp | 4 |
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; |