https://bugs.kde.org/show_bug.cgi?id=352055
--- Comment #37 from Leszek Lesner <leszek.les...@web.de> --- (In reply to Weng Xuetian from comment #36) > ... > > diff --git a/applets/systemtray/plugin/host.cpp > b/applets/systemtray/plugin/host.cpp > index 27ca227..61e8705 100644 > --- a/applets/systemtray/plugin/host.cpp > +++ b/applets/systemtray/plugin/host.cpp > @@ -99,7 +99,7 @@ Host::Host(QObject* parent) : > QObject(parent), > d(new HostPrivate(this)) > { > - QTimer::singleShot(0, this, SLOT(init())); > + QTimer::singleShot(0, this, &Host::init); > } > You are my personal hero man ;) Yes indeed reverting that patch fixes the issue for me too. So changing from Plasma 5.5 defaults > QTimer::singleShot(0, this, &Host::init); to > QTimer::singleShot(0, this, SLOT(init())); and I get my plasma-pa icon on every boot :) -- You are receiving this mail because: You are watching all bug changes.