diff --git a/plugins/bigscreen/bigscreenplugin.cpp b/plugins/bigscreen/bigscreenplugin.cpp index 79fda19f1..4177da141 100644 --- a/plugins/bigscreen/bigscreenplugin.cpp +++ b/plugins/bigscreen/bigscreenplugin.cpp @@ -30,6 +30,9 @@ BigscreenPlugin::~BigscreenPlugin() = default; bool BigscreenPlugin::receivePacket(const NetworkPacket& np) { QString message = np.get(QStringLiteral("content")); + /* Emit a signal that will be consumed by Plasma BigScreen: + * https://invent.kde.org/plasma/plasma-bigscreen/-/blob/master/containments/homescreen/package/contents/ui/indicators/KdeConnect.qml + */ Q_EMIT messageReceived(message); return true; }