From 80f6d818e43d3ce2bd2d81f1bd3bbd4160c28aea Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 6 Feb 2017 10:37:31 +0000 Subject: Fix display of progress meter (and crash) when sending emails from the KDM creator (#1045). --- src/wx/job_view.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/wx/job_view.cc') diff --git a/src/wx/job_view.cc b/src/wx/job_view.cc index 13c3bc7ab..4aa2e3c2b 100644 --- a/src/wx/job_view.cc +++ b/src/wx/job_view.cc @@ -33,6 +33,7 @@ JobView::JobView (shared_ptr job, wxWindow* parent, wxWindow* container, wx , _table (table) , _parent (parent) , _container (container) + , _gauge (0) { } @@ -78,7 +79,7 @@ JobView::setup () void JobView::maybe_pulse () { - if (_job->running() && !_job->progress ()) { + if (_gauge && _job->running() && !_job->progress()) { _gauge->Pulse (); } } -- cgit v1.2.3