Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorWouter Bolsterlee <wbolster@svn.gnome.org>2008-03-09 12:40:59 (GMT)
committer Wouter Bolsterlee <wbolster@src.gnome.org>2008-03-09 12:40:59 (GMT)
commit88712fbc8fdf5f104409a3c68cf51e5a671750d0 (patch)
treec1669b93426f017d70f5a3edec1664f296e1cba2 /shell
parenta57064987ed71578c7549ac956a34d03130863cf (diff)
Bug 495107 – Handle print dialog responses correctly
2008-03-09 Wouter Bolsterlee <wbolster@svn.gnome.org> * shell/ev-window.c (ev_window_print_dialog_response_cb): Bug 495107 – Handle print dialog responses correctly Correctly handle print dialog response. Properly fixes the above mentioned bug. svn path=/trunk/; revision=2958
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index dc96285..917ebcf 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -2220,7 +2220,7 @@ ev_window_print_dialog_response_cb (GtkDialog *dialog,
GtkPrintPages print_pages;
const gchar *file_format;
- if (response != GTK_RESPONSE_ACCEPT &&
+ if (response != GTK_RESPONSE_OK &&
response != GTK_RESPONSE_APPLY) {
gtk_widget_destroy (GTK_WIDGET (dialog));
window->priv->print_dialog = NULL;