mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-06-13 20:12:26 -04:00
Allow CQonly to re-display after toggle.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8336 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
9bc2586bff
commit
bceb795d04
@ -899,7 +899,6 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
splashTimer.setSingleShot (true);
|
splashTimer.setSingleShot (true);
|
||||||
splashTimer.start (20 * 1000);
|
splashTimer.start (20 * 1000);
|
||||||
|
|
||||||
/*
|
|
||||||
if(m_config.my_callsign()=="K1JT" or m_config.my_callsign()=="K9AN" or
|
if(m_config.my_callsign()=="K1JT" or m_config.my_callsign()=="K9AN" or
|
||||||
m_config.my_callsign()=="G4WJS" || m_config.my_callsign () == "W9XYZ") {
|
m_config.my_callsign()=="G4WJS" || m_config.my_callsign () == "W9XYZ") {
|
||||||
ui->actionWSPR_LF->setEnabled(true);
|
ui->actionWSPR_LF->setEnabled(true);
|
||||||
@ -911,7 +910,7 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
"Please use WSJT-X v1.8.0\n", errorMsg);
|
"Please use WSJT-X v1.8.0\n", errorMsg);
|
||||||
Q_EMIT finished ();
|
Q_EMIT finished ();
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
if(!ui->cbMenus->isChecked()) {
|
if(!ui->cbMenus->isChecked()) {
|
||||||
ui->cbMenus->setChecked(true);
|
ui->cbMenus->setChecked(true);
|
||||||
ui->cbMenus->setChecked(false);
|
ui->cbMenus->setChecked(false);
|
||||||
@ -7077,6 +7076,12 @@ void MainWindow::on_cbMenus_toggled(bool b)
|
|||||||
hideMenus(!b);
|
hideMenus(!b);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_cbCQonly_toggled(bool b)
|
||||||
|
{
|
||||||
|
QFile {m_config.temp_dir ().absoluteFilePath (".lock")}.remove (); // Allow jt9 to start
|
||||||
|
decodeBusy(true);
|
||||||
|
}
|
||||||
|
|
||||||
void MainWindow::on_cbFirst_toggled(bool b)
|
void MainWindow::on_cbFirst_toggled(bool b)
|
||||||
{
|
{
|
||||||
if (b) {
|
if (b) {
|
||||||
|
@ -249,6 +249,7 @@ private slots:
|
|||||||
void on_cbSWL_toggled(bool b);
|
void on_cbSWL_toggled(bool b);
|
||||||
void on_cbTx6_toggled(bool b);
|
void on_cbTx6_toggled(bool b);
|
||||||
void on_cbMenus_toggled(bool b);
|
void on_cbMenus_toggled(bool b);
|
||||||
|
void on_cbCQonly_toggled(bool b);
|
||||||
void on_cbFirst_toggled(bool b);
|
void on_cbFirst_toggled(bool b);
|
||||||
void on_cbAutoSeq_toggled(bool b);
|
void on_cbAutoSeq_toggled(bool b);
|
||||||
void networkError (QString const&);
|
void networkError (QString const&);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user