mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-25 21:49:20 -04:00
Minor code correction.
This commit is contained in:
parent
ffe6ed7a1c
commit
c6d13a7984
@ -3895,12 +3895,11 @@ void MainWindow::readFromStdout() //readFromStdout
|
||||
bool bProcessMsgNormally=ui->respondComboBox->currentText()=="CQ: First" or
|
||||
(ui->respondComboBox->currentText()=="CQ: Max Dist" and m_ActiveStationsWidget==NULL) or
|
||||
(m_ActiveStationsWidget!=NULL and !m_ActiveStationsWidget->isVisible());
|
||||
if (decodedtext.messageWords().length() >= 2) {
|
||||
QString t=decodedtext.messageWords()[2];
|
||||
if(t.contains("R+") or t.contains("R-") or t=="R" or t=="RRR" or t=="RR73") bProcessMsgNormally=true;
|
||||
}
|
||||
else {
|
||||
bProcessMsgNormally=true;
|
||||
if (decodedtext.messageWords().length() >= 3) {
|
||||
QString t=decodedtext.messageWords()[2];
|
||||
if(t.contains("R+") or t.contains("R-") or t=="R" or t=="RRR" or t=="RR73") bProcessMsgNormally=true;
|
||||
} else {
|
||||
bProcessMsgNormally=true;
|
||||
}
|
||||
if(bProcessMsgNormally) {
|
||||
m_bDoubleClicked=true;
|
||||
|
Loading…
Reference in New Issue
Block a user