From 51f692d8d4b71c22a73dc12024a58fc7544c94d0 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Wed, 22 Jul 2020 18:01:06 +0100 Subject: [PATCH] Avoid double Tx periods in WSPR modes when changing scheduling basis --- widgets/mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 615fb1dfa..fcad7d1f3 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -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 }