From b1cf2c09d6dec2c7ceefe5de5f35a001cd1b65b3 Mon Sep 17 00:00:00 2001 From: dt <qtc-committer@nokia.com> Date: Tue, 6 Oct 2009 17:14:55 +0200 Subject: [PATCH] Move startBuildQueue after potentially showing the compile output. --- src/plugins/projectexplorer/buildmanager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/projectexplorer/buildmanager.cpp b/src/plugins/projectexplorer/buildmanager.cpp index 54f821dd7e1..14ecc4bfd0b 100644 --- a/src/plugins/projectexplorer/buildmanager.cpp +++ b/src/plugins/projectexplorer/buildmanager.cpp @@ -341,9 +341,9 @@ void BuildManager::buildProjects(const QList<Project *> &projects, const QList<Q } } } - startBuildQueue(); if (ProjectExplorerPlugin::instance()->projectExplorerSettings().showCompilerOutput) m_outputWindow->popup(false); + startBuildQueue(); } void BuildManager::cleanProjects(const QList<Project *> &projects, const QList<QString> &configurations) @@ -359,9 +359,9 @@ void BuildManager::cleanProjects(const QList<Project *> &projects, const QList<Q buildQueueAppend(bs, *cit); } } - startBuildQueue(); if (ProjectExplorerPlugin::instance()->projectExplorerSettings().showCompilerOutput) m_outputWindow->popup(false); + startBuildQueue(); } void BuildManager::buildProject(Project *p, const QString &configuration) -- GitLab