mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-29 12:52:28 -04:00
Minor tweaks to FT2 auto-sequencing and writes to all.txt.
This commit is contained in:
parent
c8cdd05f34
commit
e55a8baa25
@ -4762,7 +4762,7 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(m_mode=="FT2" and ui->cbAutoSeq->isChecked()) {
|
if(m_mode=="FT2" and ui->cbAutoSeq->isChecked()) {
|
||||||
if(m_ntx==3 or m_ntx==4 or m_bDoubleClicked) {
|
if((m_ntx==3 and ui->cbFirst->isChecked()) or m_ntx==4 or m_bDoubleClicked) {
|
||||||
ft2_tx(m_ntx);
|
ft2_tx(m_ntx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -8712,9 +8712,7 @@ void MainWindow::ft2_tx(int ntx)
|
|||||||
|
|
||||||
if (g_iptt == 1 && m_iptt0 == 0) {
|
if (g_iptt == 1 && m_iptt0 == 0) {
|
||||||
auto const& current_message = QString::fromLatin1 (msgsent);
|
auto const& current_message = QString::fromLatin1 (msgsent);
|
||||||
// write_all("Tx",m_currentMessage);
|
FT2_WriteTxTimer.start(100); //Why is a delay necessary to ensure Tx after Rx in all.txt?
|
||||||
FT2_WriteTxTimer.start(100);
|
|
||||||
|
|
||||||
if (m_config.TX_messages () && !m_tune && SpecOp::FOX!=m_config.special_op_id()) {
|
if (m_config.TX_messages () && !m_tune && SpecOp::FOX!=m_config.special_op_id()) {
|
||||||
ui->decodedTextBrowser2->displayTransmittedText(current_message, m_modeTx,
|
ui->decodedTextBrowser2->displayTransmittedText(current_message, m_modeTx,
|
||||||
ui->TxFreqSpinBox->value(),m_bFastMode);
|
ui->TxFreqSpinBox->value(),m_bFastMode);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user