diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2004-11-08 17:08:09 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2004-11-08 17:08:09 +0000 |
commit | 44c494c8f38b98d629261a12f67cc141176b468c (patch) | |
tree | bfa0984ff8d574fe46da226b16a444b04434b885 /w3mimg/fb/fb_gdkpixbuf.c | |
parent | [w3m-dev 04117] Re: start attribute and value attribute on ordered lists (diff) | |
download | w3m-44c494c8f38b98d629261a12f67cc141176b468c.tar.gz w3m-44c494c8f38b98d629261a12f67cc141176b468c.zip |
[w3m-dev 04128] Re: w3mimgdisplay
* acinclude.m4 (AC_W3M_IMAGE): check not yes
* aclocal.m4, configure: regen
* w3mimg/fb/fb_gdkpixbuf.c (fb_image_load):
fb_image_fill in case GDK_PIXBUF_FRAME_DISPOSE
* w3mimg/x11/x11_w3mimg.c (get_animation_size):
return n
(x11_load_image):
fill in case GDK_PIXBUF_FRAME_DISPOSE
Diffstat (limited to 'w3mimg/fb/fb_gdkpixbuf.c')
-rw-r--r-- | w3mimg/fb/fb_gdkpixbuf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/w3mimg/fb/fb_gdkpixbuf.c b/w3mimg/fb/fb_gdkpixbuf.c index c779d90..798f573 100644 --- a/w3mimg/fb/fb_gdkpixbuf.c +++ b/w3mimg/fb/fb_gdkpixbuf.c @@ -1,4 +1,4 @@ -/* $Id: fb_gdkpixbuf.c,v 1.19 2004/08/16 16:56:40 ukai Exp $ */ +/* $Id: fb_gdkpixbuf.c,v 1.20 2004/11/08 17:08:10 ukai Exp $ */ /************************************************************************** fb_gdkpixbuf.c 0.3 Copyright (C) 2002, hito **************************************************************************/ @@ -233,6 +233,7 @@ fb_image_load(char *filename, int w, int h, int max_anim) fb_image_copy(tmp_image, fb_frame[i]); break; case GDK_PIXBUF_FRAME_DISPOSE: + fb_image_fill(tmp_image, bg_r, bg_g, bg_b); break; case GDK_PIXBUF_FRAME_REVERT: fb_image_copy(tmp_image, fb_frame[0]); |