mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-12-23 19:25:37 -05:00
Do not auto-respond to compound call 73 messages after QSO complete
Merged from v1.8 branch. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8261 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
caab407a71
commit
9e7ed64fb2
@ -4120,7 +4120,7 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
|
||||
m_ntx = 7;
|
||||
m_gen_message_is_cq = false;
|
||||
}
|
||||
} else {
|
||||
} else if (!is_73) { // don't respond to sign off messages
|
||||
m_ntx=2;
|
||||
m_QSOProgress = REPORT;
|
||||
ui->txrb2->setChecked(true);
|
||||
@ -4136,6 +4136,9 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
|
||||
}
|
||||
m_bDoubleClickAfterCQnnn=false;
|
||||
}
|
||||
else {
|
||||
return; // nothing we need to respond to
|
||||
}
|
||||
}
|
||||
else { // nothing for us
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user