diff options
author | Dan Winship <danw@src.gnome.org> | 2002-03-08 02:34:14 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-03-08 02:34:14 +0800 |
commit | d6f174ad5110ce2b86f5a4eb45d658b13735b26d (patch) | |
tree | 6ab0a115dfbf42e2b7a7c606d0fbcf47038da7b1 /mail/mail-display.h | |
parent | 127d736b662ef0015bdc6591bbc3bfe99037b413 (diff) | |
download | gsoc2013-evolution-d6f174ad5110ce2b86f5a4eb45d658b13735b26d.tar.gz gsoc2013-evolution-d6f174ad5110ce2b86f5a4eb45d658b13735b26d.tar.zst gsoc2013-evolution-d6f174ad5110ce2b86f5a4eb45d658b13735b26d.zip |
Update for storage changes: explicitly create a root folder.
* component-factory.c (add_storage): Update for storage changes:
explicitly create a root folder.
* mail-display.c (mail_display_render): Fix the "don't scroll back
to the top of the HTML widget when opening an attachment" hack
again by moving it here from mail_display_redisplay(). (It has to
happen after the gtk_html_begin.)
(mail_display_redisplay): Pass reset_scroll arg to
mail_display_render.
* mail-callbacks.c (do_mail_print): Pass reset_scroll (TRUE) to
mail_display_render.
svn path=/trunk/; revision=15967
Diffstat (limited to 'mail/mail-display.h')
-rw-r--r-- | mail/mail-display.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-display.h b/mail/mail-display.h index afdfe8b59b..aa1960fc8d 100644 --- a/mail/mail-display.h +++ b/mail/mail-display.h @@ -60,8 +60,8 @@ GtkWidget * mail_display_new (void); void mail_display_initialize_gtkhtml (MailDisplay *mail_display, GtkHTML *html); void mail_display_queue_redisplay (MailDisplay *mail_display); -void mail_display_render (MailDisplay *mail_display, GtkHTML *html); -void mail_display_redisplay (MailDisplay *mail_display, gboolean unscroll); +void mail_display_render (MailDisplay *mail_display, GtkHTML *html, gboolean reset_scroll); +void mail_display_redisplay (MailDisplay *mail_display, gboolean reset_scroll); void mail_display_redisplay_when_loaded (MailDisplay *md, gconstpointer key, void (*callback)(MailDisplay *, gpointer), |