From 812c379dda292ca1aa030237fe6a7d94d727eaa0 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Tue, 25 Jul 2017 16:51:19 +0000 Subject: [PATCH] Fix issue with Tx5 not being generated with a new DX Call git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7940 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index efe625537..b8a034d13 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -4033,7 +4033,7 @@ void MainWindow::genStdMsgs(QString rpt, bool unconditional) else if ("MSK144" == m_mode && m_bShMsgs) { msgtype(t, ui->tx5->lineEdit ()); } - else if (unconditional || hisBase != m_lastCallsign) { + else if (unconditional || hisBase != m_lastCallsign || !m_lastCallsign.size ()) { // only update tx5 when forced or callsign changes msgtype(t, ui->tx5->lineEdit ()); m_lastCallsign = hisBase;