From 1f7d8545f3f24854fd0d6e9d631f486fab8730c6 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 21 Jun 2020 13:49:37 -0400 Subject: [PATCH] Tx line to ALL.TXT should be trimmed(). --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index b3cc32127..750e40520 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -8983,7 +8983,7 @@ void MainWindow::write_all(QString txRx, QString message) QFile f{m_config.writeable_data_dir().absoluteFilePath(file_name)}; if (f.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append)) { QTextStream out(&f); - out << line + out << line.trimmed() #if QT_VERSION >= QT_VERSION_CHECK (5, 15, 0) << Qt::endl #else