diff options
Diffstat (limited to 'src/wx/normal_job_view.cc')
| -rw-r--r-- | src/wx/normal_job_view.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/normal_job_view.cc b/src/wx/normal_job_view.cc index 9bfa332c9..22b3e1cc7 100644 --- a/src/wx/normal_job_view.cc +++ b/src/wx/normal_job_view.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -48,11 +48,11 @@ NormalJobView::insert_position () const void NormalJobView::pause_clicked () { - if (_job->paused()) { + if (_job->paused_by_user()) { _job->resume (); _pause->SetLabel (_("Pause")); } else { - _job->pause (); + _job->pause_by_user (); _pause->SetLabel (_("Resume")); } } |
