diff options
author | Rodney Dawes <dobey@ximian.com> | 2003-10-01 02:44:09 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2003-10-01 02:44:09 +0800 |
commit | 8660505eb2c7c1e539b7c5741bf282348bbfc5d9 (patch) | |
tree | 2dfe4eb8a26c7ebe6b582e45abd5e68a42fbdee4 | |
parent | 7d9119733aff6881400cb30c9f967727d232b3f5 (diff) | |
download | gsoc2013-evolution-8660505eb2c7c1e539b7c5741bf282348bbfc5d9.tar.gz gsoc2013-evolution-8660505eb2c7c1e539b7c5741bf282348bbfc5d9.tar.zst gsoc2013-evolution-8660505eb2c7c1e539b7c5741bf282348bbfc5d9.zip |
Use "Sans Regular" instead of "Helvetica" Fixes bug #47878
2003-09-30 Rodney Dawes <dobey@ximian.com>
* em-format-html-print.c: Use "Sans Regular" instead of "Helvetica"
Fixes bug #47878
svn path=/trunk/; revision=22771
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-format-html-print.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 5ebbbe6b17..95b53c41b9 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2003-09-30 Rodney Dawes <dobey@ximian.com> + + * em-format-html-print.c: Use "Sans Regular" instead of "Helvetica" + Fixes bug #47878 + 2003-09-30 Not Zed <NotZed@Ximian.com> * em-format-html.c (efh_init): remove gconf stuff. diff --git a/mail/em-format-html-print.c b/mail/em-format-html-print.c index d02e72cebd..44da5abb73 100644 --- a/mail/em-format-html-print.c +++ b/mail/em-format-html-print.c @@ -129,7 +129,7 @@ emfhp_complete(EMFormatHTMLPrint *efhp, void *data) print_context = gnome_print_job_get_context(print_job); gtk_html_print_set_master(efhp->formathtml.html, print_job); - info.local_font = gnome_font_find_closest("Helvetica", 10.0); + info.local_font = gnome_font_find_closest("Sans Regular", 10.0); if (info.local_font) { line = gnome_font_get_ascender(info.local_font) - gnome_font_get_descender(info.local_font); info.page_num = 1; |