From 403992f62bde8e22be6bac8873e6348f75846532 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 9 May 2018 18:46:23 +0000 Subject: [PATCH] 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 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 271267bee..30b909121 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -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());