Skip to content
Snippets Groups Projects
Commit b1cf2c09 authored by dt's avatar dt
Browse files

Move startBuildQueue after potentially showing the compile output.

parent 5c9b3694
No related branches found
No related tags found
No related merge requests found
...@@ -341,9 +341,9 @@ void BuildManager::buildProjects(const QList<Project *> &projects, const QList<Q ...@@ -341,9 +341,9 @@ void BuildManager::buildProjects(const QList<Project *> &projects, const QList<Q
} }
} }
} }
startBuildQueue();
if (ProjectExplorerPlugin::instance()->projectExplorerSettings().showCompilerOutput) if (ProjectExplorerPlugin::instance()->projectExplorerSettings().showCompilerOutput)
m_outputWindow->popup(false); m_outputWindow->popup(false);
startBuildQueue();
} }
void BuildManager::cleanProjects(const QList<Project *> &projects, const QList<QString> &configurations) 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 ...@@ -359,9 +359,9 @@ void BuildManager::cleanProjects(const QList<Project *> &projects, const QList<Q
buildQueueAppend(bs, *cit); buildQueueAppend(bs, *cit);
} }
} }
startBuildQueue();
if (ProjectExplorerPlugin::instance()->projectExplorerSettings().showCompilerOutput) if (ProjectExplorerPlugin::instance()->projectExplorerSettings().showCompilerOutput)
m_outputWindow->popup(false); m_outputWindow->popup(false);
startBuildQueue();
} }
void BuildManager::buildProject(Project *p, const QString &configuration) void BuildManager::buildProject(Project *p, const QString &configuration)
......
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