sixel + anysize patch compatibility fix ref. #117

This commit is contained in:
Bakkeby 2024-03-07 21:24:31 +01:00
parent 0f50ef072c
commit f79ac733f3
1 changed files with 5 additions and 0 deletions

5
x.c
View File

@ -3198,8 +3198,13 @@ xfinishdraw(void)
memset(&gcvalues, 0, sizeof(gcvalues));
gcvalues.graphics_exposures = False;
gc = XCreateGC(xw.dpy, xw.win, GCGraphicsExposures, &gcvalues);
#if ANYSIZE_PATCH
XCopyArea(xw.dpy, (Drawable)im->pixmap, xw.buf, gc, 0, 0,
width, height, win.hborderpx + im->x * win.cw, win.vborderpx + im->y * win.ch);
#else
XCopyArea(xw.dpy, (Drawable)im->pixmap, xw.buf, gc, 0, 0,
width, height, borderpx + im->x * win.cw, borderpx + im->y * win.ch);
#endif // ANYSIZE_PATCH
XFreeGC(xw.dpy, gc);
}
#endif // SIXEL_PATCH