mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-03 05:38:01 -04: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
aef04b28ff
commit
026b9a3916
@ -3855,6 +3855,11 @@ void MainWindow::on_dxCallEntry_textChanged (QString const& call)
|
|||||||
statusUpdate ();
|
statusUpdate ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_dxCallEntry_returnPressed ()
|
||||||
|
{
|
||||||
|
on_lookupButton_clicked();
|
||||||
|
}
|
||||||
|
|
||||||
void MainWindow::on_dxGridEntry_textChanged (QString const& grid)
|
void MainWindow::on_dxGridEntry_textChanged (QString const& grid)
|
||||||
{
|
{
|
||||||
if (ui->dxGridEntry->hasAcceptableInput ()) {
|
if (ui->dxGridEntry->hasAcceptableInput ()) {
|
||||||
@ -4179,7 +4184,6 @@ void MainWindow::on_actionQRA64_triggered()
|
|||||||
m_wideGraph->setModeTx(m_modeTx);
|
m_wideGraph->setModeTx(m_modeTx);
|
||||||
ui->sbSubmode->setMaximum(4);
|
ui->sbSubmode->setMaximum(4);
|
||||||
ui->sbSubmode->setValue(m_nSubMode);
|
ui->sbSubmode->setValue(m_nSubMode);
|
||||||
ui->cbTxLock->setEnabled(true);
|
|
||||||
ui->actionInclude_averaging->setEnabled(false);
|
ui->actionInclude_averaging->setEnabled(false);
|
||||||
ui->actionInclude_correlation->setEnabled(false);
|
ui->actionInclude_correlation->setEnabled(false);
|
||||||
}
|
}
|
||||||
@ -5178,10 +5182,6 @@ void MainWindow::transmitDisplay (bool transmitting)
|
|||||||
// ui->TxFreqSpinBox->setEnabled (false);
|
// ui->TxFreqSpinBox->setEnabled (false);
|
||||||
ui->TxFreqSpinBox->setEnabled (true);
|
ui->TxFreqSpinBox->setEnabled (true);
|
||||||
//###
|
//###
|
||||||
if(m_mode!="QRA64") {
|
|
||||||
ui->cbTxLock->setChecked(false);
|
|
||||||
// ui->cbTxLock->setEnabled(false);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
ui->TxFreqSpinBox->setEnabled (QSY_allowed and !m_bFastMode);
|
ui->TxFreqSpinBox->setEnabled (QSY_allowed and !m_bFastMode);
|
||||||
ui->pbR2T->setEnabled (QSY_allowed);
|
ui->pbR2T->setEnabled (QSY_allowed);
|
||||||
|
@ -159,6 +159,7 @@ private slots:
|
|||||||
void on_addButton_clicked();
|
void on_addButton_clicked();
|
||||||
void on_dxCallEntry_textChanged (QString const&);
|
void on_dxCallEntry_textChanged (QString const&);
|
||||||
void on_dxGridEntry_textChanged (QString const&);
|
void on_dxGridEntry_textChanged (QString const&);
|
||||||
|
void on_dxCallEntry_returnPressed ();
|
||||||
void on_genStdMsgsPushButton_clicked();
|
void on_genStdMsgsPushButton_clicked();
|
||||||
void on_logQSOButton_clicked();
|
void on_logQSOButton_clicked();
|
||||||
void on_actionJT9_triggered();
|
void on_actionJT9_triggered();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user