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
@@ -11,11 +11,6 @@ SeerGdbLogWidget::~SeerGdbLogWidget () {
void SeerGdbLogWidget::processText (const QString& text) {
// Don't do anything if we're not enabled.
if (isLogEnabled() == false) {
return;
}
QString str;
// Remove leading "~"
@@ -79,7 +74,5 @@ void SeerGdbLogWidget::processText (const QString& text) {
// Write the string to the log.
textEdit->append(str);
moveToEnd();
}