Merge branch 'develop' of bitbucket.org:k1jt/wsjtx into develop

This commit is contained in:
Joe Taylor 2023-01-09 10:46:48 -05:00
commit e02c430f9d
3 changed files with 16 additions and 0 deletions

4
NEWS
View File

@ -26,6 +26,10 @@ changes since release 2.6.0:
- Make the initialization of the decoded text font more robust.
- Better initialization when starting the program in FT8 Hound mode.
- Fix a compiler warning on macOS.
Release: WSJT-X 2.6.0
January 6, 2023

View File

@ -26,6 +26,10 @@ changes since release 2.6.0:
- Make the initialization of the decoded text font more robust.
- Better initialization when starting the program in FT8 Hound mode.
- Fix a compiler warning on macOS.
Release: WSJT-X 2.6.0
January 6, 2023

View File

@ -804,7 +804,9 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
config_label.hide ();
}
statusUpdate ();
#if defined(Q_OS_WIN)
QTimer::singleShot (250, [=] {setRig (m_lastMonitoredFrequency);}); // This is needed for Hamradio Deluxe
#endif
});
m_multi_settings->create_menu_actions (this, ui->menuConfig);
m_configurations_button = m_rigErrorMessageBox.addButton (tr ("Configurations...")
@ -1037,6 +1039,12 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
}
m_specOp=m_config.special_op_id();
// Starting in FT8 Hound mode needs this initialization
if (m_specOp==SpecOp::HOUND) {
on_ft8Button_clicked();
ui->houndButton->click();
}
ui->labDXped->setVisible(SpecOp::NONE != m_specOp);
ui->labDXped->setStyleSheet("QLabel {background-color: red; color: white;}");
ui->pbBestSP->setVisible(m_mode=="FT4");