summaryrefslogtreecommitdiff
path: root/glabels2/src/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'glabels2/src/print.c')
-rw-r--r--glabels2/src/print.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/glabels2/src/print.c b/glabels2/src/print.c
index a7d29ac..81f15e3 100644
--- a/glabels2/src/print.c
+++ b/glabels2/src/print.c
@@ -368,6 +368,7 @@ gl_print_batch (GnomePrintJob *job,
glLabel *label,
gint n_sheets,
gint n_copies,
+ gint first,
glPrintFlags *flags)
{
glMerge *merge;
@@ -384,9 +385,9 @@ gl_print_batch (GnomePrintJob *job,
if ( merge == NULL ) {
n_per_page = gl_template_get_n_labels(label_type);
- gl_print_simple (job, label, n_sheets, 1, n_per_page, flags);
+ gl_print_simple (job, label, n_sheets, first, n_per_page, flags);
} else {
- gl_print_merge_collated (job, label, n_copies, 1, flags);
+ gl_print_merge_collated (job, label, n_copies, first, flags);
}
gl_template_free (template);