mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-21 11:31:51 -05:00
Correct the if statement controlling display of DX station fields.
This commit is contained in:
parent
0ef914fb5c
commit
951d17b20c
@ -7092,7 +7092,7 @@ void MainWindow::WSPR_config(bool b)
|
||||
ui->rh_decodes_widget->setVisible(!b);
|
||||
ui->controls_stack_widget->setCurrentIndex (b && m_mode != "Echo" ? 1 : 0);
|
||||
ui->QSO_controls_widget->setVisible (!b);
|
||||
ui->DX_controls_widget->setVisible (true);
|
||||
ui->DX_controls_widget->setVisible (!b or (m_mode=="Echo"));
|
||||
ui->WSPR_controls_widget->setVisible (b);
|
||||
ui->lh_decodes_title_label->setVisible(!b and ui->cbMenus->isChecked());
|
||||
ui->logQSOButton->setVisible(!b);
|
||||
|
Loading…
Reference in New Issue
Block a user