forked from qt-creator/qt-creator
Move startBuildQueue after potentially showing the compile output.
This commit is contained in:
@@ -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
|
|||||||
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)
|
||||||
|
Reference in New Issue
Block a user