Hi!

It looks like this is actually a "bug" in Qt. Quoting from Qt4.7's
src/gui/image/qiconloader.cpp:

----
/* Theme to use in last resort, if the theme does not have the icon, neither
the parents  */ static QString fallbackTheme()
{
#ifdef Q_WS_X11
    if (X11->desktopEnvironment == DE_GNOME) {
        return QLatin1String("gnome");
    } else if (X11->desktopEnvironment == DE_KDE) {
        return X11->desktopVersion >= 4
            ? QString::fromLatin1("oxygen")
            : QString::fromLatin1("crystalsvg");
    } else {
        return QLatin1String("hicolor");
    }
#endif
    return QString();
}
----

Unfortunately, hicolor does not seem to have audio-volume-high nor
audio-volume-muted. It also seems to be missing other icons which get
rendered as text.

So I actually don't know how to fix this in a clean way. It would be possible
to recommend one of the other icon themes and extend the icon search path
from within minitube, but I think that's not clean.

I think I will at least prepare a patch to add fallback texts.

Cheers,
sur5r

-- 
ceterum censeo microsoftem esse delendam.

Attachment: signature.asc
Description: PGP signature

Reply via email to