From 95591001306dc5c6b57f46155bd3e2b919114ea6 Mon Sep 17 00:00:00 2001 From: Eric Pruitt Date: Sun, 19 Jan 2014 10:48:35 -0600 Subject: [PATCH] Use character scaling in XCopyArea --- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st.c b/st.c index 48c81a2..21afb52 100644 --- a/st.c +++ b/st.c @@ -3302,7 +3302,7 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) { 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); -- libgit2 1.1.1