Do not pop up general messages pane

General messages pane should only be opened on direct user interaction.

Task-number: QTCREATORBUG-24430
Change-Id: Ib4c72b1bb07c27aabc74eb62c56061d5548b677d
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Eike Ziller
2020-12-17 10:25:00 +01:00
parent 7a6bfbcfbe
commit 9277c58e42
3 changed files with 4 additions and 4 deletions

View File

@@ -59,8 +59,8 @@ static QString runExecutable(const Utils::CommandLine &commandLine,
if (response.result != SynchronousProcessResponse::Finished
&& (failSilently == FailSilently::No
|| response.result != SynchronousProcessResponse::FinishedError)) {
Core::MessageManager::write(response.exitMessage(commandLine.toUserOutput(), 10));
Core::MessageManager::write(QString::fromUtf8(response.allRawOutput()));
Core::MessageManager::writeFlashing(response.exitMessage(commandLine.toUserOutput(), 10));
Core::MessageManager::writeFlashing(QString::fromUtf8(response.allRawOutput()));
return {};
}