1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-18 02:55:12 +00:00

Fix backwards width/height args for image drawing.

This commit is contained in:
Brenden Matthews 2009-05-22 01:39:38 -06:00
parent 3ad217e447
commit 445fde109c

View File

@ -123,7 +123,7 @@ static void cimlib_draw_image(struct image_list_s *cur)
cur->h = h;
}
imlib_context_set_image(buffer);
imlib_blend_image_onto_image(image, 1, 0, 0, h, w,
imlib_blend_image_onto_image(image, 1, 0, 0, w, h,
cur->x, cur->y, cur->w, cur->h);
imlib_context_set_image(image);
imlib_free_image();