Skip to content
Snippets Groups Projects

Popup for showing the current operation and new app icon

Merged Burak Hançerli requested to merge popup-and-new-icon into master
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
@@ -15,7 +15,6 @@ DesignStudio::DesignStudio(QWebSocket *socket, const QString &m_deviceUuid, QObj
initPingPong();
initSocket();
qDebug() << "Starting ping timer" << m_id;
m_pingTimer.start();
}
@@ -42,6 +41,8 @@ void DesignStudio::initPingPong()
connect(&m_pongTimer, &QTimer::timeout, this, [this]() {
qDebug() << "Design Studio" << m_id << "is not responding. Closing the connection.";
m_socket->close();
m_socket->abort();
emit disconnected(m_id);
});
}
Loading