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); }