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
This commit is contained in:
Bill Somerville 2017-07-25 16:51:19 +00:00
parent 87ae336443
commit 812c379dda
1 changed files with 1 additions and 1 deletions

View File

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