mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 05:38:46 -05:00
In Hound mode, F4 ==> ntx=1.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8334 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
e116bd578f
commit
02fee1fe27
@ -4541,18 +4541,20 @@ void MainWindow::clearDX ()
|
|||||||
m_qsoStart.clear ();
|
m_qsoStart.clear ();
|
||||||
m_qsoStop.clear ();
|
m_qsoStop.clear ();
|
||||||
genStdMsgs (QString {});
|
genStdMsgs (QString {});
|
||||||
if (1 == ui->tabWidget->currentIndex())
|
if (ui->tabWidget->currentIndex() == 1) {
|
||||||
{
|
ui->genMsg->setText(ui->tx6->text());
|
||||||
ui->genMsg->setText(ui->tx6->text());
|
m_ntx=7;
|
||||||
m_ntx=7;
|
m_gen_message_is_cq = true;
|
||||||
m_gen_message_is_cq = true;
|
ui->rbGenMsg->setChecked(true);
|
||||||
ui->rbGenMsg->setChecked(true);
|
} else {
|
||||||
}
|
if(m_mode=="FT8" and m_config.bHound()) {
|
||||||
else
|
m_ntx=1;
|
||||||
{
|
ui->txrb1->setChecked(true);
|
||||||
|
} else {
|
||||||
m_ntx=6;
|
m_ntx=6;
|
||||||
ui->txrb6->setChecked(true);
|
ui->txrb6->setChecked(true);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
m_QSOProgress = CALLING;
|
m_QSOProgress = CALLING;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user