mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-23 05:58:43 -05:00
Correct a flaw in behavior of "Lock Tx=Rx" (Tnx to VK4EME). CR in DXCall entry ==> do "Lookup" (Tnx to W9MDB).
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7297 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
fdecbd90de
commit
8c0f9098a1
@ -3855,6 +3855,11 @@ void MainWindow::on_dxCallEntry_textChanged (QString const& call)
|
||||
statusUpdate ();
|
||||
}
|
||||
|
||||
void MainWindow::on_dxCallEntry_returnPressed ()
|
||||
{
|
||||
on_lookupButton_clicked();
|
||||
}
|
||||
|
||||
void MainWindow::on_dxGridEntry_textChanged (QString const& grid)
|
||||
{
|
||||
if (ui->dxGridEntry->hasAcceptableInput ()) {
|
||||
@ -4179,7 +4184,6 @@ void MainWindow::on_actionQRA64_triggered()
|
||||
m_wideGraph->setModeTx(m_modeTx);
|
||||
ui->sbSubmode->setMaximum(4);
|
||||
ui->sbSubmode->setValue(m_nSubMode);
|
||||
ui->cbTxLock->setEnabled(true);
|
||||
ui->actionInclude_averaging->setEnabled(false);
|
||||
ui->actionInclude_correlation->setEnabled(false);
|
||||
}
|
||||
@ -5178,10 +5182,6 @@ void MainWindow::transmitDisplay (bool transmitting)
|
||||
// ui->TxFreqSpinBox->setEnabled (false);
|
||||
ui->TxFreqSpinBox->setEnabled (true);
|
||||
//###
|
||||
if(m_mode!="QRA64") {
|
||||
ui->cbTxLock->setChecked(false);
|
||||
// ui->cbTxLock->setEnabled(false);
|
||||
}
|
||||
} else {
|
||||
ui->TxFreqSpinBox->setEnabled (QSY_allowed and !m_bFastMode);
|
||||
ui->pbR2T->setEnabled (QSY_allowed);
|
||||
|
@ -159,6 +159,7 @@ private slots:
|
||||
void on_addButton_clicked();
|
||||
void on_dxCallEntry_textChanged (QString const&);
|
||||
void on_dxGridEntry_textChanged (QString const&);
|
||||
void on_dxCallEntry_returnPressed ();
|
||||
void on_genStdMsgsPushButton_clicked();
|
||||
void on_logQSOButton_clicked();
|
||||
void on_actionJT9_triggered();
|
||||
|
Loading…
Reference in New Issue
Block a user