mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-23 04:28:36 -04:00
Merge branch 'develop' of bitbucket.org:k1jt/wsjtx into develop
This commit is contained in:
commit
e02c430f9d
4
NEWS
4
NEWS
@ -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
|
||||
|
@ -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
|
||||
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user