From d4e2c21053a54042da1752b6ce6bc56f454870e5 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 25 Jan 2024 11:14:55 -0500 Subject: [PATCH] Special case: yellow Tx message for Q65-60x should use hhmmss. --- widgets/displaytext.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/widgets/displaytext.cpp b/widgets/displaytext.cpp index fac88e070..168b6803b 100644 --- a/widgets/displaytext.cpp +++ b/widgets/displaytext.cpp @@ -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") {