From: Carl Hetherington Date: Thu, 23 Jul 2015 23:29:43 +0000 (+0100) Subject: Fix non-display of pending jobs in the batch processor. X-Git-Tag: v2.1.28~5 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=bcf817949c2e0157f39933720937e7b40390e5ad;p=dcpomatic.git Fix non-display of pending jobs in the batch processor. --- diff --git a/src/wx/job_manager_view.cc b/src/wx/job_manager_view.cc index 729dbc3ad..7f53a258f 100644 --- a/src/wx/job_manager_view.cc +++ b/src/wx/job_manager_view.cc @@ -75,6 +75,8 @@ public: _progress_connection = job->Progress.connect (boost::bind (&JobRecord::progress, this)); _finished_connection = job->Finished.connect (boost::bind (&JobRecord::finished, this)); + progress (); + table->Layout (); }