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
@@ -12,11 +12,6 @@ SeerSeerLogWidget::~SeerSeerLogWidget () {
void SeerSeerLogWidget::processText (const QString& text) {
// Don't do anything if we're not enabled.
if (isLogEnabled() == false) {
return;
}
// Only log '^', '*', and '=' records.
bool selected = false;
@@ -53,7 +48,5 @@ void SeerSeerLogWidget::processText (const QString& text) {
// Write the string to the log.
textEdit->append(str);
moveToEnd();
}