From 70e114b47fe8bc9617edaf9efefc8c8e2cc74e47 Mon Sep 17 00:00:00 2001 From: Ernie Pasveer Date: Sun, 16 Mar 2025 11:09:32 -0500 Subject: [PATCH] Bring in SeerSeerLogWidget.cpp from main. --- src/SeerSeerLogWidget.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/SeerSeerLogWidget.cpp b/src/SeerSeerLogWidget.cpp index 6e8b9f7..9654cfa 100644 --- a/src/SeerSeerLogWidget.cpp +++ b/src/SeerSeerLogWidget.cpp @@ -44,15 +44,14 @@ void SeerSeerLogWidget::processText (const QString& text) { return; } - // Don't call this. It removes extra '\' characters. Probably not needed for the Seer log. // Filter escape characters. - // QString str = Seer::filterEscapes(text); + QString str = Seer::filterEscapes(text); if (isTimeStampEnabled()) { str = QString("[") + QTime::currentTime().toString("hh:mm:ss.zz") + QString("] ") + str; } // Write the string to the log. - textEdit->append(text); + textEdit->append(str); }