mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 08:21:17 -05: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;
|
||||
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()
|
||||
|
Loading…
Reference in New Issue
Block a user