mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-08-16 04:32:34 -04:00
Don't show the Log dialog in Fox mode -- just log the QSO silently.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8295 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
768974cb1e
commit
ee25b9db0f
@ -85,8 +85,11 @@ void LogQSO::initLogQSO(QString const& hisCall, QString const& hisGrid, QString
|
|||||||
m_myGrid=myGrid;
|
m_myGrid=myGrid;
|
||||||
ui->band->setText (m_config->bands ()->find (dialFreq));
|
ui->band->setText (m_config->bands ()->find (dialFreq));
|
||||||
ui->loggedOperator->setText(opCall);
|
ui->loggedOperator->setText(opCall);
|
||||||
show ();
|
if(bFox) {
|
||||||
QTimer::singleShot(700, this, SLOT(accept()));
|
accept();
|
||||||
|
} else {
|
||||||
|
show ();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void LogQSO::accept()
|
void LogQSO::accept()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user