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

Fixes a non sensical progress bar for projects without any buildsteps

parent 37a9e2bd
No related branches found
No related tags found
No related merge requests found
...@@ -183,6 +183,8 @@ void BuildManager::gotoTaskWindow() ...@@ -183,6 +183,8 @@ void BuildManager::gotoTaskWindow()
void BuildManager::startBuildQueue() void BuildManager::startBuildQueue()
{ {
if (m_buildQueue.isEmpty())
return;
if (!m_running) { if (!m_running) {
// Progress Reporting // Progress Reporting
Core::ProgressManager *progressManager = Core::ICore::instance()->progressManager(); Core::ProgressManager *progressManager = Core::ICore::instance()->progressManager();
......
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