Bring in SeerSeerLogWidget.cpp from main.

This commit is contained in:
Ernie Pasveer
2025-03-16 11:09:32 -05:00
parent 4655c99f98
commit 70e114b47f
+2 -3
View File
@@ -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);
}