Fixed moving to end of SeerLogWidget.

This commit is contained in:
Ernie Pasveer
2022-03-12 17:51:32 -06:00
parent 9987155b77
commit 0ebd594d6e
5 changed files with 20 additions and 45 deletions
-7
View File
@@ -10,11 +10,6 @@ SeerTildeLogWidget::~SeerTildeLogWidget () {
void SeerTildeLogWidget::processText (const QString& text) {
// Don't do anything if we're not enabled.
if (isLogEnabled() == false) {
return;
}
QString str = text.mid(1); // Remove leading "~"
if (str.front() == '"') { // Remove leading """
@@ -32,7 +27,5 @@ void SeerTildeLogWidget::processText (const QString& text) {
}
textEdit->append(str);
moveToEnd();
}