summaryrefslogtreecommitdiff
path: root/libview/ev-print-operation.c
diff options
context:
space:
mode:
Diffstat (limited to 'libview/ev-print-operation.c')
-rw-r--r--libview/ev-print-operation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libview/ev-print-operation.c b/libview/ev-print-operation.c
index baccc179..f2e90ba3 100644
--- a/libview/ev-print-operation.c
+++ b/libview/ev-print-operation.c
@@ -1257,8 +1257,8 @@ ev_print_operation_export_print_dialog_response_cb (GtkDialog *dial
export->pages_per_sheet = MAX (1, gtk_print_settings_get_number_up (print_settings));
export->copies = gtk_print_settings_get_n_copies (print_settings);
- export->collate = gtk_print_settings_get_collate (print_settings);
- export->reverse = gtk_print_settings_get_reverse (print_settings);
+ export->collate = (gtk_print_settings_get_collate (print_settings) != FALSE);
+ export->reverse = (gtk_print_settings_get_reverse (print_settings) != FALSE);
if (export->collate) {
export->uncollated_copies = export->copies;