-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
5.10.0
-
None
The mistake is in /src/gui/image/qiconloader.cpp → QIconLoader::findIconHelper() → line 414, which is the last line in the following excerpt:
auto cache = theme.m_gtkCaches.at(i);
if (cache->isValid()) {
const auto result = cache->lookup(iconNameFallback);
if (cache->isValid()) {
That prevents finding of newly installed icons and can cause other problems too. It should be:
auto cache = theme.m_gtkCaches.at(i);
if (cache->isValid()) {
const auto result = cache->lookup(iconNameFallback);
if (!result.isEmpty()) {
Sorry, I don't use gerrit; please correct it!