Black Michael via wsjt-devel
2017-07-15 20:56:30 UTC
Small patch to cover the case of DX call being erased and leaving Tx 5 blank.
@@ -3900,7 +3940,7 @@   msgtype(t, ui->tx4);   t=t0 + "73";   if((m_mode=="JT4" or m_mode=="QRA64") and m_bShMsgs) t="@1750  (73)";-   if (hisBase != m_lastCallsign) { // only update tx5 when callsign changes+   if (hisBase != m_lastCallsign || ui->tx5->currentText().length() < 2) { // only update tx5 when callsign changes    msgtype(t, ui->tx5->lineEdit ());    m_lastCallsign = hisBase;   } de Mike W9MDB
@@ -3900,7 +3940,7 @@   msgtype(t, ui->tx4);   t=t0 + "73";   if((m_mode=="JT4" or m_mode=="QRA64") and m_bShMsgs) t="@1750  (73)";-   if (hisBase != m_lastCallsign) { // only update tx5 when callsign changes+   if (hisBase != m_lastCallsign || ui->tx5->currentText().length() < 2) { // only update tx5 when callsign changes    msgtype(t, ui->tx5->lineEdit ());    m_lastCallsign = hisBase;   } de Mike W9MDB