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:
Joe Taylor 2017-12-07 19:15:03 +00:00
parent 768974cb1e
commit ee25b9db0f
1 changed files with 5 additions and 2 deletions

View File

@ -85,8 +85,11 @@ void LogQSO::initLogQSO(QString const& hisCall, QString const& hisGrid, QString
m_myGrid=myGrid;
ui->band->setText (m_config->bands ()->find (dialFreq));
ui->loggedOperator->setText(opCall);
show ();
QTimer::singleShot(700, this, SLOT(accept()));
if(bFox) {
accept();
} else {
show ();
}
}
void LogQSO::accept()