From ef217b9dcee04f7ca506dbe8899cd48aa16f6d63 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 14 Jul 2016 17:50:28 +0000 Subject: [PATCH] When auto-sequencing, don't change Tx msg if we're calling CQ and receive a 73. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6919 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 47cce0689..0eca404e8 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2229,7 +2229,7 @@ void::MainWindow::fast_decode_done() int i2=msg0.indexOf(m_hisCall); if((m_mode=="JTMSK" or m_mode=="MSK144" or m_bFast9) and m_bEME and tmax>=0.0 and i1>10 and i2>i1+3) { //Here, "m_bEME" implies AutoSeq - processMessage(msg0,40,false); + if((msg0.indexOf(" 73") < 0) or (m_ntx!=6)) processMessage(msg0,40,false); } if(m_msg[i][0]==0) break; QString message=QString::fromLatin1(m_msg[i]);