Fix bug when scrolling down to the last line.

It wasn't positioning to the begining of the line.
This commit is contained in:
Ernie Pasveer
2022-01-16 12:22:37 -06:00
parent 9f92ed65a8
commit e5091af6dc
5 changed files with 26 additions and 3 deletions
+2 -1
View File
@@ -31,6 +31,7 @@ void SeerTildeLogWidget::processText (const QString& text) {
}
textEdit->append(str);
textEdit->verticalScrollBar()->setValue(textEdit->verticalScrollBar()->maximum());
moveToEnd();
}