mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 08:07:10 -04:00
Do not disable Tx or "Enable Tx" when changing band in WSPR mode
The fixes a regression introduced in r6311 git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6312 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
56cffb9381
commit
a897f3ba41
@ -3920,8 +3920,10 @@ void MainWindow::on_bandComboBox_activated (int index)
|
||||
void MainWindow::band_changed (Frequency f)
|
||||
{
|
||||
if (m_bandEdited) {
|
||||
ui->stopTxButton->click(); // halt any transmission
|
||||
auto_tx_mode (false); // disable auto Tx
|
||||
if (!m_mode.startsWith ("WSPR")) {
|
||||
ui->stopTxButton->click (); // halt any transmission
|
||||
auto_tx_mode (false); // disable auto Tx
|
||||
}
|
||||
m_bandEdited = false;
|
||||
psk_Reporter->sendReport(); // Upload any queued spots before changing band
|
||||
if (!m_transmitting) monitor (true);
|
||||
|
Loading…
Reference in New Issue
Block a user