mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05:00
Fix double-display of FT8 and MSK144 decodes in right window.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7813 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
5f88f18f50
commit
891ac881af
@ -3668,15 +3668,15 @@ void MainWindow::processMessage(QString const& messages, int position, bool ctrl
|
||||
}
|
||||
}
|
||||
|
||||
int i9=m_QSOText.indexOf(decodedtext.string());
|
||||
if (i9<0 and !decodedtext.isTX())
|
||||
{
|
||||
QString s1=m_QSOText.string().trimmed();
|
||||
QString s2=t2.trimmed();
|
||||
if (s1!=s2 and !decodedtext.isTX()) {
|
||||
decodedtext=t2;
|
||||
ui->decodedTextBrowser2->displayDecodedText(decodedtext, m_baseCall, false, m_logBook,
|
||||
m_config.color_CQ(), m_config.color_MyCall(), m_config.color_DXCC(),
|
||||
m_config.color_NewCall());
|
||||
ui->decodedTextBrowser2->displayDecodedText(decodedtext, m_baseCall,
|
||||
false, m_logBook,m_config.color_CQ(), m_config.color_MyCall(),
|
||||
m_config.color_DXCC(),m_config.color_NewCall());
|
||||
m_QSOText=decodedtext;
|
||||
}
|
||||
}
|
||||
|
||||
// prior DX call (possible QSO partner)
|
||||
auto qso_partner_base_call = Radio::base_callsign (ui->dxCallEntry-> text ());
|
||||
|
Loading…
Reference in New Issue
Block a user