diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-09-30 10:42:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-09-30 10:42:30 +0100 |
| commit | a5e041b46b675c1f42fc83920be45345662e0376 (patch) | |
| tree | 65c9728693ed5f22028e5eeceeefad239f027919 /src/wx/job_view_dialog.cc | |
| parent | 0ef231d6ef3c483edc5d13affd31367acfecd320 (diff) | |
Reverse order of jobs in the batch converter view.
Diffstat (limited to 'src/wx/job_view_dialog.cc')
| -rw-r--r-- | src/wx/job_view_dialog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/job_view_dialog.cc b/src/wx/job_view_dialog.cc index b4dcd271f..e629cce62 100644 --- a/src/wx/job_view_dialog.cc +++ b/src/wx/job_view_dialog.cc @@ -26,7 +26,7 @@ using boost::shared_ptr; JobViewDialog::JobViewDialog (wxWindow* parent, wxString title, shared_ptr<Job> job) : TableDialog (parent, title, 4, 0, false) { - _view = new JobView (job, this, this, _table); + _view = new JobView (job, this, this, _table, true); layout (); SetMinSize (wxSize (960, -1)); |
