From 0886dc1995ea261d16bb0974adf80f69ef229291 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Sat, 1 Sep 2018 18:14:40 -0400 Subject: [PATCH] Fixed tx messages should display EOT character --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index d76e1d7..102a01e 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -6043,7 +6043,7 @@ void MainWindow::createMessageTransmitQueue(QString const& text){ lines.append(dt.message()); } - displayTextForFreq(lines.join(""), freq, QDateTime::currentDateTimeUtc(), true, true, true); + displayTextForFreq(lines.join("") + " \u2301 ", freq, QDateTime::currentDateTimeUtc(), true, true, true); // keep track of the last message text sent m_lastTxMessage = text;