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
This commit is contained in:
Joe Taylor 2017-08-01 18:46:12 +00:00
parent db9181d1cd
commit b3da39c5ca
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}