mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 13:43:49 +02:00
Fix messed up LogDialog multi-lines
This commit is contained in:
parent
2b576e86f0
commit
f6e01bbd36
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ void LogDialog::resizeEvent(QResizeEvent*) {
|
|||
void LogDialog::appendLogLine(QString logLine) {
|
||||
if (isVisible()) {
|
||||
if (logLine.contains(_searchTerm, Qt::CaseInsensitive)) {
|
||||
_logTextBox->appendPlainText(logLine.simplified());
|
||||
_logTextBox->appendPlainText(logLine.trimmed());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue