commit 95591001306dc5c6b57f46155bd3e2b919114ea6 from: Eric Pruitt via: Roberto E. Vargas Caballero date: Tue Jan 21 18:20:17 2014 UTC Use character scaling in XCopyArea commit - c0a56ef4be2a0f84360f41b2d45964e7ef297746 commit + 95591001306dc5c6b57f46155bd3e2b919114ea6 blob - 48c81a26e04bc6b167515c3793667a76ba210bdc blob + 21afb529803a0a1402aaf43775c4589d74f6e5c7 --- st.c +++ st.c @@ -3302,7 +3302,7 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, width, 1); } XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, winx, winy, width, - font->ascent + font->descent, winx, winy); + CEIL((font->ascent + font->descent) * chscale), winx, winy); /* Reset clip to none. */ XftDrawSetClip(xw.draw, 0);