From c1e579782ac12e0ba7132cc26af3bc1eef1688be Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Fri, 29 Sep 2017 10:46:43 +0000 Subject: [PATCH] Fix accidental regression in UDP Reply message handling git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8136 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index e1490fed0..2a99d0ccc 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -6173,7 +6173,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); @@ -6185,7 +6185,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)