From d90104a79ec07513123786cf7c8b17e45d6d65b1 Mon Sep 17 00:00:00 2001 From: Elliott Liggett Date: Thu, 15 Sep 2022 14:09:16 -0700 Subject: [PATCH] Added flush to the text stream to termbin. --- loggingwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/loggingwindow.cpp b/loggingwindow.cpp index ade0661..3ed9cf2 100644 --- a/loggingwindow.cpp +++ b/loggingwindow.cpp @@ -109,6 +109,7 @@ void loggingWindow::connectedToHost() outText << ui->logTextDisplay->toPlainText(); outText << "\n----------\nSent from wfview version "; outText << WFVIEW_VERSION << "\n----------\n"; + outText.flush(); } void loggingWindow::handleLoggingHostError(QAbstractSocket::SocketError error)