https://bugs.kde.org/show_bug.cgi?id=473278
--- Comment #7 from Nate Graham <n...@kde.org> --- Sure, apply this diff to plasma-workspace: diff --git a/applets/systemtray/systemtraymodel.cpp b/applets/systemtray/systemtraymodel.cpp index da2dcf8d2..d81775c92 100644 --- a/applets/systemtray/systemtraymodel.cpp +++ b/applets/systemtray/systemtraymodel.cpp @@ -119,7 +119,8 @@ QVariant PlasmoidModel::data(const QModelIndex &index, int role) const return pluginMetaData.name(); } case Qt::DecorationRole: { - QIcon icon = QIcon::fromTheme(pluginMetaData.iconName()); + QIcon icon = QIcon::fromTheme(applet->icon(), + QIcon::fromTheme(pluginMetaData.iconName())); return icon.isNull() ? QVariant() : icon; } default: -- You are receiving this mail because: You are watching all bug changes.