mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-03 05:38:01 -04:00
Narrower decodes display and move AP info into extra appended info
This commit is contained in:
parent
52643b01e2
commit
ffd2ad4dc0
@ -434,7 +434,13 @@ void DisplayText::displayDecodedText(DecodedText const& decodedText, QString con
|
|||||||
QString extra;
|
QString extra;
|
||||||
if (haveFSpread)
|
if (haveFSpread)
|
||||||
{
|
{
|
||||||
extra = QString {"%1"}.arg (fSpread, 5, 'f', fSpread < 0.95 ? 3 : 2) + QChar {' '};
|
extra += QString {"%1"}.arg (fSpread, 5, 'f', fSpread < 0.95 ? 3 : 2) + QChar {' '};
|
||||||
|
}
|
||||||
|
auto ap_pos = message.lastIndexOf (QRegularExpression {R"((?:\?\s)?a[0-9]$)"});
|
||||||
|
if (ap_pos >= 0)
|
||||||
|
{
|
||||||
|
extra += message.mid (ap_pos) + QChar {' '};
|
||||||
|
message = message.left (ap_pos).trimmed ();
|
||||||
}
|
}
|
||||||
m_CQPriority="";
|
m_CQPriority="";
|
||||||
if (CQcall)
|
if (CQcall)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user