diff options
-rw-r--r-- | mail/ChangeLog | 8 | ||||
-rw-r--r-- | mail/importers/.cvsignore | 12 | ||||
-rw-r--r-- | mail/mail-display.c | 2 |
3 files changed, 22 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 79ab88f32d..85b41df89c 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,11 @@ +2001-03-13 Dan Winship <danw@ximian.com> + + * mail-display.c (on_url_requested): Call gtk_html_end() on the + stream so things happen. Fixes a problem with some inline images + (just very small ones maybe?) + + * importers/.cvsignore: create + 2001-03-13 Jeffrey Stedfast <fejj@ximian.com> * session.c (mail_session_init): Call camel_init with the diff --git a/mail/importers/.cvsignore b/mail/importers/.cvsignore new file mode 100644 index 0000000000..ee1568b9e0 --- /dev/null +++ b/mail/importers/.cvsignore @@ -0,0 +1,12 @@ +.deps +.libs +.pure +Makefile +Makefile.in +*.bb +*.bbg +*.da +*.gcov +*.oaf +*.lo +*.la
\ No newline at end of file diff --git a/mail/mail-display.c b/mail/mail-display.c index 8304cbc595..cc49a43771 100644 --- a/mail/mail-display.c +++ b/mail/mail-display.c @@ -856,6 +856,8 @@ on_url_requested (GtkHTML *html, const char *url, GtkHTMLStream *handle, g_return_if_fail (ba != NULL); gtk_html_write (html, handle, ba->data, ba->len); } + + gtk_html_end (html, handle, GTK_HTML_STREAM_OK); } void |