From 8fff73fa7a85c5744955befaf28c754673924afe Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 23 Mar 2003 22:03:32 +0000 Subject: [PATCH] seems to be better text placement than ever --- render/font.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/render/font.c b/render/font.c index c2e97861..4436cf84 100644 --- a/render/font.c +++ b/render/font.c @@ -96,7 +96,8 @@ void font_draw(XftDraw *d, TextureText *t, int x, int y, int w, int h) XftColor c; /* accomidate for areas bigger/smaller than Xft thinks the font is tall */ - y += (t->font->xftfont->height + 1 - (t->font->height + h)) / 2; + y -= (2 * (t->font->xftfont->ascent + t->font->xftfont->descent) - + (t->font->height + h)) / 2; x += 3; /* XXX figure out X with justification */ -- 2.39.2