From fce13d2a82f1630877e4f1a36a8679c291b46d0e Mon Sep 17 00:00:00 2001 From: Steve Franke Date: Sun, 28 Oct 2018 14:25:34 -0500 Subject: [PATCH] This change allows Esc or F4 to clear the messages when a Next caller is queued up. --- mainwindow.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index b3c4bc6fa..00a95e741 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -4678,7 +4678,7 @@ void MainWindow::abortQSO() { bool b=m_auto; clearDX(); - if(b and !m_auto) auto_tx_mode(true); + if(b) auto_tx_mode(false); ui->txrb6->setChecked(true); } @@ -4709,9 +4709,10 @@ bool MainWindow::stdCall(QString w) void MainWindow::genStdMsgs(QString rpt, bool unconditional) { - if(ui->tx3->text().left(4)=="TU; ") { - return; - } +// Seems to prevent abortQSO from working when a TU; message is already queue// Seems to prevent abortQSO from working when a TU; message is already queued +// if(ui->tx3->text().left(4)=="TU; ") { +// return; +// } genCQMsg (); auto const& hisCall=ui->dxCallEntry->text();