mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-08-01 05:32:31 -04: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;
|
return;
|
||||||
}
|
}
|
||||||
m_WSPR_tx_next = false;
|
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
|
if (m_config.is_transceiver_online () // need working rig control for hopping
|
||||||
&& !m_config.is_dummy_rig ()
|
&& !m_config.is_dummy_rig ()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user