aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser.c
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-12-18 05:16:30 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-12-18 05:16:30 +0800
commit79d83995442cf9958cb382a2b949c4154b995ef9 (patch)
treeb43f8e180b18e25c343491a3e0c354e4d3e393f3 /mail/folder-browser.c
parent6977afee948218b3e985934c24b8142efa642420 (diff)
downloadgsoc2013-evolution-79d83995442cf9958cb382a2b949c4154b995ef9.tar
gsoc2013-evolution-79d83995442cf9958cb382a2b949c4154b995ef9.tar.gz
gsoc2013-evolution-79d83995442cf9958cb382a2b949c4154b995ef9.tar.bz2
gsoc2013-evolution-79d83995442cf9958cb382a2b949c4154b995ef9.tar.lz
gsoc2013-evolution-79d83995442cf9958cb382a2b949c4154b995ef9.tar.xz
gsoc2013-evolution-79d83995442cf9958cb382a2b949c4154b995ef9.tar.zst
gsoc2013-evolution-79d83995442cf9958cb382a2b949c4154b995ef9.zip
Avoid embedding <object> tags when we are printing.
2001-12-17 Jon Trowbridge <trow@ximian.com> * mail-format.c (attachment_header): Avoid embedding <object> tags when we are printing. (handle_multipart_signed): Don't do the click-for-info signature stuff when we are printing. (handle_via_bonobo): Don't embed an <object> tag if we are printing. * folder-browser.c: Changed context_menu[] array so that we can print when the preview pane is closed. svn path=/trunk/; revision=15139
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r--mail/folder-browser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c
index 8375582553..2f1f5c476d 100644
--- a/mail/folder-browser.c
+++ b/mail/folder-browser.c
@@ -1454,7 +1454,7 @@ static EPopupMenu context_menu[] = {
{ N_("_Open"), NULL, GTK_SIGNAL_FUNC (open_msg), NULL, 0 },
{ N_("_Edit as New Message..."), NULL, GTK_SIGNAL_FUNC (resend_msg), NULL, CAN_RESEND },
{ N_("_Save As..."), NULL, GTK_SIGNAL_FUNC (save_msg), NULL, 0 },
- { N_("_Print"), NULL, GTK_SIGNAL_FUNC (print_msg), NULL, SELECTION_SET },
+ { N_("_Print"), NULL, GTK_SIGNAL_FUNC (print_msg), NULL, 0 },
E_POPUP_SEPARATOR,