From 7b0fd1fa5488017694a033f99e7f27fb841a7e3f Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Fri, 22 Sep 2017 22:08:49 +0000 Subject: [PATCH] Fix a regression in processing incoming Reply UDP messages git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8108 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index b1df95b75..94c367e8c 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -6163,7 +6163,7 @@ void MainWindow::replyToCQ (QTime time, qint32 snr, float delta_time, quint32 de .arg (snr, 3) .arg (delta_time, 4, 'f', 1) .arg (delta_frequency, 4) - .arg (mode, 2) + .arg (mode, -2) .arg (message_text); auto messages = ui->decodedTextBrowser->toPlainText (); auto position = messages.lastIndexOf (cqtext); @@ -6175,7 +6175,7 @@ void MainWindow::replyToCQ (QTime time, qint32 snr, float delta_time, quint32 de .arg (snr, 3) .arg ('-' + QString::number (delta_time, 'f', 1), 4) .arg (delta_frequency, 4) - .arg (mode, 2) + .arg (mode, -2) .arg (message_text)); } if (position >= 0)