From c78e43e960ea7c29db427fbec4942421640cb4ce Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 19 May 2021 15:58:39 -0400 Subject: [PATCH] Double-click on a call in Messages now updates the signal report in Q65 mode. --- map65/mainwindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/map65/mainwindow.cpp b/map65/mainwindow.cpp index b7462429a..6fd297185 100644 --- a/map65/mainwindow.cpp +++ b/map65/mainwindow.cpp @@ -1807,7 +1807,10 @@ void MainWindow::doubleClickOnMessages(QString hiscall, QString t2) lookup(); } - genStdMsgs(""); + QString rpt=""; + if(m_modeTx=="Q65") rpt=t2.mid(20,3); + genStdMsgs(rpt); + if(t2.indexOf(m_myCall)>0) { m_ntx=2; ui->txrb2->setChecked(true);