diff options
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/printing/e-contact-print.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 4d1cdbf0f6..6021880dab 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,10 @@ +2006-04-21 Simon Zheng <simon.zheng@sun.com> + + Fix for bug #337604 + * printing/e-contact-print.c: (e_contact_print_response): + Should destory the print dialog window after clicking Print + Preview button. + 2006-04-21 Devashish Sharma <sdevashish@novell.com> Fix for Bug 333869. diff --git a/addressbook/printing/e-contact-print.c b/addressbook/printing/e-contact-print.c index c1c3d08655..950d30338b 100644 --- a/addressbook/printing/e-contact-print.c +++ b/addressbook/printing/e-contact-print.c @@ -818,6 +818,7 @@ e_contact_print_response(GtkWidget *dialog, gint response_id, gpointer data) g_object_ref(contact); complete_sequence(NULL, E_BOOK_VIEW_STATUS_OK, ctxt); } + gtk_widget_destroy (dialog); break; case GNOME_PRINT_DIALOG_RESPONSE_CANCEL: if (uses_book) |