https://bugs.kde.org/show_bug.cgi?id=457965

--- Comment #10 from Nate Graham <n...@kde.org> ---
Found it. In the Kicker model, appentry.cpp has this:

QIcon AppEntry::icon() const
{
    if (m_icon.isNull()) {
        if (QFileInfo::exists(m_service->icon())) {
            m_icon = QIcon(m_service->icon());
        } else {
            m_icon = QIcon::fromTheme(m_service->icon(),
QIcon::fromTheme(QStringLiteral("unknown")));
        }
    }
    return m_icon;
}

if (QFileInfo::exists(m_service->icon())) { is returning true here. If I
comment all of that out, the problem stops happening. This code seems weird. I
hven't figured out its purpose yet.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to