From 2edf0aebd4e1aba749a8ecf54a6c4b6ecb7ce2a0 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sat, 13 Apr 2013 01:53:24 +0000 Subject: [PATCH] Test m_tx2QSO before writing Tx message to QSO window. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3162 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 923e006ff..2b828188b 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1448,7 +1448,7 @@ void MainWindow::guiUpdate() out << QDateTime::currentDateTimeUtc().toString("hhmm") << " Transmitting: " << t << endl; f.close(); - displayTxMsg(t); + if(m_tx2QSO) displayTxMsg(t); } QStringList w=t.split(" ",QString::SkipEmptyParts); @@ -1520,7 +1520,7 @@ void MainWindow::guiUpdate() out << QDateTime::currentDateTimeUtc().toString("hhmm") << " Transmitting: " << t << endl; f.close(); - displayTxMsg(t); + if(m_tx2QSO) displayTxMsg(t); } if(!btxok && btxok0 && m_iptt==1) stopTx();