From c001ca6d83514b9b83f4f0d9571ca634311b27b8 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 12 Mar 2018 17:26:10 +0000 Subject: [PATCH] Scroll Fox's log window to the bottom, so that it shows most recent QSOs. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8555 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- messageaveraging.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messageaveraging.cpp b/messageaveraging.cpp index 0170d22c3..684d69084 100644 --- a/messageaveraging.cpp +++ b/messageaveraging.cpp @@ -118,7 +118,7 @@ void MessageAveraging::foxLabRate(int n) void MessageAveraging::foxAddLog(QString logLine) { - ui->msgAvgPlainTextEdit->insertPlainText(logLine + "\n"); + ui->msgAvgPlainTextEdit->appendPlainText(logLine); m_nLogged_++; QString t; t.sprintf("Logged: %d",m_nLogged_);