From b3da39c5ca3834bf833d3db40029e0e4014add70 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 1 Aug 2017 18:46:12 +0000 Subject: [PATCH] Don't highlight FT8 contest-mode Tx3 message as a free-text message. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7975 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 681088798..a731d6e2d 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -4353,7 +4353,7 @@ void MainWindow::msgtype(QString t, QLineEdit* tx) //msgtype() if(itype==7 and m_config.enable_VHF_features() and m_mode=="JT65") shortMsg=true; if(m_mode=="MSK144" and t.mid(0,1)=="<") text=false; - if(m_mode=="MSK144" and m_config.contestMode()) { + if((m_mode=="MSK144" or m_mode=="FT8") and m_config.contestMode()) { int i0=t.trimmed().length()-7; if(t.mid(i0,3)==" R ") text=false; }