Tx line to ALL.TXT should be trimmed().

This commit is contained in:
Joe Taylor 2020-06-21 13:49:37 -04:00
parent 79c437f69a
commit 1f7d8545f3
1 changed files with 1 additions and 1 deletions

View File

@ -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