mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
"Force Call 1st" must also force AutoSeq.
This commit is contained in:
parent
26f7fed8aa
commit
637d4d0411
@ -4076,7 +4076,10 @@ void MainWindow::startTx2()
|
||||
t=ui->tx6->text();
|
||||
if(t.mid(0,1)=="#") snr=t.mid(1,5).toDouble();
|
||||
if(snr>0.0 or snr < -50.0) snr=99.0;
|
||||
if((m_ntx==6 or m_ntx==7) and m_config.force_call_1st()) ui->cbFirst->setChecked(true);
|
||||
if((m_ntx==6 or m_ntx==7) and m_config.force_call_1st()) {
|
||||
ui->cbAutoSeq->setChecked(true);
|
||||
ui->cbFirst->setChecked(true);
|
||||
}
|
||||
transmit (snr);
|
||||
ui->signal_meter_widget->setValue(0,0);
|
||||
if(m_mode=="Echo" and !m_tune) m_bTransmittedEcho=true;
|
||||
@ -4608,7 +4611,6 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
|
||||
logQSOTimer.start(0);
|
||||
m_ntx=6;
|
||||
ui->txrb6->setChecked(true);
|
||||
ui->cbFirst->setChecked(false);
|
||||
} else {
|
||||
m_ntx=5;
|
||||
ui->txrb5->setChecked(true);
|
||||
|
Loading…
Reference in New Issue
Block a user