From 78652121fa95a5e791dcc5e1e2dce87a67971cae Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Mon, 3 Oct 2016 01:20:15 +0000 Subject: [PATCH] MSK144 should auto sequence only when the box is checked. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7142 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 79e3412ec..56a399b97 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1305,7 +1305,7 @@ void MainWindow::fastSink(qint64 frames) int i1=message.indexOf(m_baseCall); int i2=message.indexOf(m_hisCall); if(i1>10 and i2>i1+3) { - if((message.indexOf(" 73") < 0) or (m_ntx!=6)) { + if(m_bAutoSeq and ((message.indexOf(" 73") < 0) or (m_ntx!=6))) { processMessage(message,43,false); } writeAllTxt(message);