From 2d9bebddbed6c2c4b99b390b396a5f89347ab0a7 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 29 Aug 2023 08:43:59 -0400 Subject: [PATCH 1/2] Correct a typo in User Guiide. --- doc/user_guide/en/settings-radio.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/user_guide/en/settings-radio.adoc b/doc/user_guide/en/settings-radio.adoc index 1224c94ed..2fca3f582 100644 --- a/doc/user_guide/en/settings-radio.adoc +++ b/doc/user_guide/en/settings-radio.adoc @@ -31,7 +31,7 @@ image::RadioTab.png[align="center",alt="Radio Tab"] suitable. * _CAT Control_: To have _WSJT-X_ control the radio directly rather - than though another program, make the following settings: + than through another program, make the following settings: ** Select the *Serial Port* or *Network Server* including the service port number used to communicate with your radio. From 3b03c9c824bad09cb045f82a6057f0f8e1056e74 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Tue, 29 Aug 2023 17:03:20 +0200 Subject: [PATCH 2/2] Fix a logging error in Q65_Pileup mode. --- widgets/mainwindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index d59cf20f6..4d6393a80 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -6676,6 +6676,10 @@ void MainWindow::on_logQSOButton_clicked() //Log QSO button m_xSent=m_config.my_grid().left(4); m_xRcvd=m_hisGrid; break; + case SpecOp::Q65_PILEUP: + m_xSent=m_config.my_grid().left(4); + m_xRcvd=m_hisGrid; + break; default: break; }