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
This commit is contained in:
Joe Taylor 2018-02-20 17:35:49 +00:00
parent 0f5c3ce664
commit 877e1cd987
1 changed files with 2 additions and 6 deletions

View File

@ -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 {};
}