mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Repair a regression that disabled WSPR band hopping with Tx % eq 0
This commit is contained in:
parent
419ccc8dab
commit
a886cee8b9
@ -8129,9 +8129,9 @@ void MainWindow::WSPR_scheduling ()
|
||||
return;
|
||||
}
|
||||
m_WSPR_tx_next = false;
|
||||
if (!ui->sbTxPercent->isEnabled () || !ui->sbTxPercent->value ())
|
||||
if (!ui->sbTxPercent->isEnabled ())
|
||||
{
|
||||
return; // don't schedule if %age disabled or zero
|
||||
return; // don't schedule if %age disabled
|
||||
}
|
||||
if (m_config.is_transceiver_online () // need working rig control for hopping
|
||||
&& !m_config.is_dummy_rig ()
|
||||
|
Loading…
Reference in New Issue
Block a user