mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 05:38:46 -05:00
Allow use of NA VHF, EU VHF, and Field Day messages and sequencing in Q65 mode.
This commit is contained in:
parent
25cb82b14d
commit
2304f5dce3
@ -6454,13 +6454,21 @@ void MainWindow::on_actionQ65_triggered()
|
|||||||
ui->lh_decodes_headings_label->setText("UTC dB DT Freq " + tr ("Message"));
|
ui->lh_decodes_headings_label->setText("UTC dB DT Freq " + tr ("Message"));
|
||||||
ui->rh_decodes_headings_label->setText("UTC dB DT Freq " + tr ("Message"));
|
ui->rh_decodes_headings_label->setText("UTC dB DT Freq " + tr ("Message"));
|
||||||
statusChanged();
|
statusChanged();
|
||||||
if(SpecOp::NONE < m_config.special_op_id()) {
|
|
||||||
ui->labDXped->setVisible(true);
|
if (SpecOp::NONE < m_config.special_op_id () && SpecOp::FOX > m_config.special_op_id ()) {
|
||||||
ui->labDXped->setText("Contest ?");
|
QString t0="";
|
||||||
} else {
|
if(SpecOp::NA_VHF==m_config.special_op_id()) t0="NA VHF";
|
||||||
ui->labDXped->setVisible(false);
|
if(SpecOp::EU_VHF==m_config.special_op_id()) t0="EU VHF";
|
||||||
ui->labDXped->setText("");
|
if(SpecOp::FIELD_DAY==m_config.special_op_id()) t0="Field Day";
|
||||||
|
if(t0=="") {
|
||||||
|
ui->labDXped->setVisible(false);
|
||||||
|
} else {
|
||||||
|
ui->labDXped->setVisible(true);
|
||||||
|
ui->labDXped->setText(t0);
|
||||||
|
}
|
||||||
|
on_contest_log_action_triggered();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionMSK144_triggered()
|
void MainWindow::on_actionMSK144_triggered()
|
||||||
|
Loading…
Reference in New Issue
Block a user