mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-23 12:38:53 -04:00
Merge branch 'feat-fst280' of bitbucket.org:k1jt/wsjtx into feat-fst280
This commit is contained in:
commit
97773af107
@ -434,7 +434,13 @@ void DisplayText::displayDecodedText(DecodedText const& decodedText, QString con
|
||||
QString extra;
|
||||
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="";
|
||||
if (CQcall)
|
||||
|
@ -5606,6 +5606,8 @@ void MainWindow::on_tx6_editingFinished() //tx6 edited
|
||||
void MainWindow::on_RoundRobin_currentTextChanged(QString text)
|
||||
{
|
||||
ui->sbTxPercent->setEnabled(text=="Random");
|
||||
m_WSPR_tx_next = false; // cancel any pending Tx to avoid
|
||||
// undesirable consecutive Tx periods
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user