Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-print-job.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/shell/ev-print-job.c b/shell/ev-print-job.c
index f79c1fc..1f215c7 100644
--- a/shell/ev-print-job.c
+++ b/shell/ev-print-job.c
@@ -258,9 +258,10 @@ idle_print_handler (EvPrintJob *job)
{
if (!job->printing) {
ev_document_doc_mutex_lock ();
- ev_ps_exporter_begin (EV_PS_EXPORTER (job->document),
- job->temp_file, job->first_page,
- job->last_page);
+ ev_ps_exporter_begin (
+ EV_PS_EXPORTER (job->document),
+ job->temp_file, job->first_page, job->last_page,
+ job->width, job->height, job->duplex);
ev_document_doc_mutex_unlock ();
job->next_page = job->first_page;
job->printing = TRUE;