* xterm.c (x_draw_image_foreground_1): Subtract slice.x/y from

clip_x/y_origin.
This commit is contained in:
Jan Djärv 2004-06-17 19:35:00 +00:00
parent 236e9d7e70
commit 95911c7476
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2004-06-17 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* xterm.c (x_draw_image_foreground_1): Subtract slice.x/y from
clip_x/y_origin.
* fns.c (string_to_multibyte): Use xmalloc/xfree instead of alloca.
* macfns.c (Fx_display_color_cells): Do not limit return value to 256.

View file

@ -2357,8 +2357,8 @@ x_draw_image_foreground_1 (s, pixmap)
XGCValues xgcv;
xgcv.clip_mask = s->img->mask;
xgcv.clip_x_origin = x;
xgcv.clip_y_origin = y;
xgcv.clip_x_origin = x - s->slice.x;
xgcv.clip_y_origin = y - s->slice.y;
xgcv.function = GXcopy;
XChangeGC (s->display, s->gc, mask, &xgcv);