mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-21 03:28:59 -04:00
Special case: yellow Tx message for Q65-60x should use hhmmss.
This commit is contained in:
parent
226b17d0ea
commit
d4e2c21053
@ -531,7 +531,8 @@ void DisplayText::displayTransmittedText(QString text, QString modeTx, qint32 tx
|
||||
QString t2;
|
||||
t2 = t2.asprintf("%4d",txFreq);
|
||||
QString t;
|
||||
if(bFastMode or modeTx=="FT8" or modeTx=="FT4" or (TRperiod<60)) {
|
||||
if(bFastMode or modeTx=="FT8" or modeTx=="FT4" or (TRperiod<60) or
|
||||
(modeTx=="Q65" and TRperiod==60)) {
|
||||
t = QDateTime::currentDateTimeUtc().toString("hhmmss") + \
|
||||
" Tx " + t2 + t1 + text;
|
||||
} else if(modeTx.mid(0,6)=="FT8fox") {
|
||||
|
Loading…
Reference in New Issue
Block a user