Skip to content
Snippets Groups Projects
Commit dec87b22 authored by con's avatar con
Browse files

Scroll Application Output to end also for project explorer messages.

Task-number: QTCREATORBUG-1405
Reviewed-by: dt
parent 05ba81b9
No related branches found
No related tags found
No related merge requests found
......@@ -487,7 +487,10 @@ void OutputWindow::appendApplicationOutputInline(const QString &out, bool onStdE
void OutputWindow::appendMessage(const QString &out, bool isError)
{
setMaximumBlockCount(MaxBlockCount);
const bool atBottom = isScrollbarAtBottom();
m_formatter->appendMessage(doNewlineEnfocement(out), isError);
if (atBottom)
scrollToBottom();
enableUndoRedo();
}
......
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