Correct the tests for receiving "R ", etc., in autosequencing logic.

This commit is contained in:
Joe Taylor 2022-04-12 12:56:04 -04:00
parent ab72238132
commit d45d0b6b8f
1 changed files with 1 additions and 1 deletions

View File

@ -3760,7 +3760,7 @@ void MainWindow::readFromStdout() //readFromStdout
(ui->respondComboBox->currentText()=="CQ: Max Dist" and m_ActiveStationsWidget==NULL) or
(m_ActiveStationsWidget!=NULL and !m_ActiveStationsWidget->isVisible());
QString t=decodedtext.messageWords()[4];
if(t.contains("R+") or t.contains("R-") or t.contains("R ")) bProcessMsgNormally=true;
if(t.contains("R+") or t.contains("R-") or t=="R" or t=="RRR" or t=="RR73" or t=="73") bProcessMsgNormally=true;
if(bProcessMsgNormally) {
m_bDoubleClicked=true;
m_bAutoReply = true;