https://bugs.kde.org/show_bug.cgi?id=502273
Akseli Lahtinen <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #12 from Akseli Lahtinen <[email protected]> --- In KIconLoader::iconPath we have: ``` QString path; if (group_or_size == KIconLoader::User) { path = d->locate(name + QLatin1String(".png")); if (path.isEmpty()) { path = d->locate(name + QLatin1String(".svgz")); } if (path.isEmpty()) { path = d->locate(name + QLatin1String(".svg")); } if (path.isEmpty()) { path = d->locate(name + QLatin1String(".xpm")); } return path; } ``` So it takes png first. Switching those around might resolve this bug, will try. I'm curious though why it has been done this way, the git blame doesnt show that far back. -- You are receiving this mail because: You are watching all bug changes.
