Notify GUI when batch starts

Closes #4906
This commit is contained in:
George Hilliard
2018-11-01 16:02:01 -05:00
parent cc6cbe8347
commit cfb61f6fbf
2 changed files with 2 additions and 3 deletions

View File

@@ -597,6 +597,8 @@ void BatchQueue::startProcessing ()
// start batch processing // start batch processing
rtengine::startBatchProcessing (next->job, this); rtengine::startBatchProcessing (next->job, this);
queue_draw (); queue_draw ();
notifyListener();
} }
} }
} }

View File

@@ -281,9 +281,6 @@ void BatchQueuePanel::startBatchProc ()
// callback in response to the *reported* state. // callback in response to the *reported* state.
queueShouldRun = true; queueShouldRun = true;
// Don't need an update callback from the queue to know it is started:
setGuiFromBatchState(true, batchQueue->getEntries().size());
saveOptions(); saveOptions();
batchQueue->startProcessing (); batchQueue->startProcessing ();
} }