diff options
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/e-msg-composer-attachment-bar.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 1d6d1ed1ba..d4c2eac806 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2003-07-28 Antonio Xu <antonio.xu@sun.com> + + * e-msg-composer-attachment-bar.c (update): add + gdk_pixbuf_loader_close to close pix buffer loading. [#45908] + 2003-07-25 Larry Ewing <lewing@ximian.com> * e-msg-composer.c (GNOME_GTKHTML_EDITOR_CONTROL_ID): require the diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c index b1e714ca7e..c6e9e7bcee 100644 --- a/composer/e-msg-composer-attachment-bar.c +++ b/composer/e-msg-composer-attachment-bar.c @@ -268,7 +268,9 @@ update (EMsgComposerAttachmentBar *bar) if (!error) { int ratio, width, height; - + + gdk_pixbuf_loader_close (loader, NULL); + /* Shrink pixbuf */ pixbuf = gdk_pixbuf_loader_get_pixbuf (loader); width = gdk_pixbuf_get_width (pixbuf); |