Skip to content
Snippets Groups Projects
Commit bc3878b7 authored by Kai Koehne's avatar Kai Koehne
Browse files

Show again all application output in 'Application Output'

Fixes a regression introduced in 7862e312.

Reviewed-by: dt
parent dad99969
No related branches found
No related tags found
No related merge requests found
...@@ -78,6 +78,8 @@ void QtOutputFormatter::appendApplicationOutput(const QString &text, bool onStdE ...@@ -78,6 +78,8 @@ void QtOutputFormatter::appendApplicationOutput(const QString &text, bool onStdE
int index = matchPos + m_qtError.matchedLength() - 1; int index = matchPos + m_qtError.matchedLength() - 1;
append(text.mid(index), onStdErr ? StdErrFormat : StdOutFormat); append(text.mid(index), onStdErr ? StdErrFormat : StdOutFormat);
} else {
append(text, onStdErr ? StdErrFormat : StdOutFormat);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment