(gif_load): Use correct width and height for GIF images.

This commit is contained in:
Pavel Janík 2002-02-20 10:27:06 +00:00
parent 210f943e01
commit c7f07c4c35
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2002-02-20 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
* xfns.c (gif_load): Use correct width and height for GIF images.
2002-02-19 Eli Zaretskii <eliz@is.elta.co.il>
* floatfns.c (Fatan): Accept an optional second arg and call

View file

@ -10161,8 +10161,8 @@ gif_load (f, img)
return 0;
}
width = img->width = gif->SWidth;
height = img->height = gif->SHeight;
width = img->width = max (gif->SWidth, gif->Image.Left + gif->Image.Width);
height = img->height = max (gif->SHeight, gif->Image.Top + gif->Image.Height);
/* Create the X image and pixmap. */
if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))