From 877e1cd98707f867217530cc1fe82196fff4ff68 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 20 Feb 2018 17:35:49 +0000 Subject: [PATCH] Don't clear DXCall for after Hound logs a QSO. Don't let Hound transmit all blanks. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8514 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 96ddef203..9d2139fda 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2966,7 +2966,7 @@ void MainWindow::readFromStdout() //readFromStdout auto_tx_mode(false); on_logQSOButton_clicked(); } - if(w.at(2)==m_config.my_callsign()) { + if(w.at(2)==m_config.my_callsign() and ui->tx3->text().length()>0) { m_rptRcvd=w.at(4); m_rptSent=decodedtext.string().mid(7,3); //### Select TX3, set random TxFreq in [300-900], and Force Auto ON. ### @@ -4871,11 +4871,7 @@ void MainWindow::acceptQSO (QDateTime const& QSO_date_off, QString const& call, m_messageClient->qso_logged (QSO_date_off, call, grid, dial_freq, mode, rpt_sent, rpt_received, tx_power, comments, name, QSO_date_on, operator_call, my_call, my_grid); m_messageClient->logged_ADIF (ADIF); - - if (m_config.clear_DX ()) - { - clearDX (); - } + if (m_config.clear_DX () and !m_config.bHound()) clearDX (); m_dateTimeQSOOn = QDateTime {}; }