Display MSK144 messages for MyCall in right window.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8653 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2018-05-09 18:46:23 +00:00
parent 8b3714bf1c
commit 403992f62b
1 changed files with 1 additions and 1 deletions

View File

@ -4363,7 +4363,7 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
QString s1 = m_QSOText.trimmed ();
QString s2 = message.string ().trimmed();
if (s1!=s2 and !message.isTX()) {
if (!s2.contains(m_baseCall)) { // Taken care of elsewhere if for_us
if (!s2.contains(m_baseCall) or m_mode=="MSK144") { // Taken care of elsewhere if for_us and slow mode
ui->decodedTextBrowser2->displayDecodedText(message, m_baseCall,
false, m_logBook,m_config.color_CQ(), m_config.color_MyCall(),
m_config.color_DXCC(),m_config.color_NewCall(),m_config.ppfx());