From 4af9cabb969c68abfd216588da94cae8eb1695c8 Mon Sep 17 00:00:00 2001 From: Björn Hagemeister Date: Wed, 23 Apr 2014 18:19:57 +0200 Subject: Fix status icon updating not working --- src/server/mainwindow/mainwindow.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/server/mainwindow/mainwindow.cpp') diff --git a/src/server/mainwindow/mainwindow.cpp b/src/server/mainwindow/mainwindow.cpp index e3b7952..aeac347 100644 --- a/src/server/mainwindow/mainwindow.cpp +++ b/src/server/mainwindow/mainwindow.cpp @@ -599,14 +599,17 @@ void MainWindow::onButtonStopProjection() c->setDesiredProjectionSource(0); c->setProjectionSource(false); } - NetworkMessage msg; - msg.setField(_ID, _VNCCLIENT); + NetworkMessage stopVncClientmsg; + NetworkMessage stopVncServermsg; + stopVncClientmsg.setField(_ID, _VNCCLIENT); + stopVncServermsg.setField(_ID, _VNCSERVER); for (QList::iterator it(_clientFrames.begin()); it != _clientFrames.end(); ++it) { Client *c = (**it).client(); if (c == NULL) continue; - c->sendMessage(msg); + c->sendMessage(stopVncClientmsg); + c->sendMessage(stopVncServermsg); } } -- cgit v1.2.3-55-g7522