From 6164352fc4c686e2fe7cc8aec6720d768b07bbbe Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 16 Apr 2013 00:34:17 +0000 Subject: [PATCH] "Prompt me to log QSO" should not require "ID after 73". Fixed. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3175 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 939cdaa67..09748feb5 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1461,9 +1461,8 @@ void MainWindow::guiUpdate() if(w.length()==3) t=w[2]; icw[0]=0; m_sent73=(t=="73" or itext!=0); - if(m_sent73 and m_After73) { - icw[0]=m_ncw; -// if(m_promptToLog) on_logQSOButton_clicked(); + if(m_sent73) { + if(m_After73) icw[0]=m_ncw; if(m_promptToLog) logQSOTimer->start(200); }