diff --git a/src/plugins/projectexplorer/runconfiguration.cpp b/src/plugins/projectexplorer/runconfiguration.cpp index 438d631c781..f2f5871a5a3 100644 --- a/src/plugins/projectexplorer/runconfiguration.cpp +++ b/src/plugins/projectexplorer/runconfiguration.cpp @@ -1659,12 +1659,12 @@ void SimpleTargetRunner::start() connect(&m_launcher, &ApplicationLauncher::remoteStderr, this, [this](const QString &output) { - appendMessage(output, Utils::StdErrFormatSameLine); + appendMessage(output, Utils::StdErrFormatSameLine, false); }); connect(&m_launcher, &ApplicationLauncher::remoteStdout, this, [this](const QString &output) { - appendMessage(output, Utils::StdOutFormatSameLine); + appendMessage(output, Utils::StdOutFormatSameLine, false); }); connect(&m_launcher, &ApplicationLauncher::finished,