From ee25b9db0fc421a0fcb3434e608c463a6a5f8cb6 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 7 Dec 2017 19:15:03 +0000 Subject: [PATCH] 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 --- logqso.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/logqso.cpp b/logqso.cpp index 8fae0d22a..ea926bd95 100644 --- a/logqso.cpp +++ b/logqso.cpp @@ -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()