From: Carlos Garcia Campos Date: Sat, 8 Mar 2008 20:04:10 +0000 (+0000) Subject: Make sure print job is only run when the print button is clicked. Based on X-Git-Tag: EVINCE_2_22_0~7 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=5788f911e2d0cc2529549e8711e3f2d3d05010ec;p=evince.git Make sure print job is only run when the print button is clicked. Based on 2008-03-08 Carlos Garcia Campos * shell/ev-window.c: (ev_window_print_dialog_response_cb): Make sure print job is only run when the print button is clicked. Based on patch by Eugen Dedu. Fixes bug #495107. svn path=/trunk/; revision=2956 --- diff --git a/ChangeLog b/ChangeLog index 84395173..3f9f7bf7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-03-08 Carlos Garcia Campos + + * shell/ev-window.c: (ev_window_print_dialog_response_cb): + + Make sure print job is only run when the print button is + clicked. Based on patch by Eugen Dedu. Fixes bug #495107. + 2008-03-03 Carlos Garcia Campos * backend/pdf/pdfdocument.evince-backend.in: diff --git a/shell/ev-window.c b/shell/ev-window.c index 4c3fcf23..dc96285d 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -2220,7 +2220,8 @@ ev_window_print_dialog_response_cb (GtkDialog *dialog, GtkPrintPages print_pages; const gchar *file_format; - if (response == GTK_RESPONSE_CANCEL) { + if (response != GTK_RESPONSE_ACCEPT && + response != GTK_RESPONSE_APPLY) { gtk_widget_destroy (GTK_WIDGET (dialog)); window->priv->print_dialog = NULL;