diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-10-30 22:49:22 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-10-30 22:49:22 +0100 |
commit | 09c6f1847a1ba1e1a08c129b71ae50ed9910a4af (patch) | |
tree | c963725ca5de4360e18d574f09aaca58fb41dd82 /client/Client.cpp | |
parent | 5ebf6f8b0b77730c3f3cc0a90bd924dd9c170276 (diff) |
janky/buggy auto-refresh
Diffstat (limited to 'client/Client.cpp')
-rw-r--r-- | client/Client.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/client/Client.cpp b/client/Client.cpp index 16b9bf3..263a57f 100644 --- a/client/Client.cpp +++ b/client/Client.cpp @@ -34,7 +34,7 @@ void Client::ClientEcho() { connect(socket, &QTcpSocket::disconnected, [&]() { socket->disconnectFromHost(); lineCounter = 0; - refreshChart=true; + refreshChart=true; }); timer->start(1000); @@ -53,8 +53,6 @@ void Client::timeFunction() { socket->connectToHost(networkAddress, tcpPortAddress); socket->write(msgToSend); - - } void Client::missingRecords() { |