commit 55adf0aad1d5acf0b9a00e2a9f834cef8b61b3b3 from: Christoph Lohmann <20h@r-36.net> date: Sun Mar 10 20:16:51 2013 UTC Pange seems to use ascent + descent instead of height. Thanks Bobby Powers for noticing this! commit - 82494f248d778e1195a9eabfac916ce08c52b6da commit + 55adf0aad1d5acf0b9a00e2a9f834cef8b61b3b3 blob - fc9ed70d435c03434e5a1fb64898a667d5b4caeb blob + 0923cec886d30e4e6de4c3826a94f799a01e7e42 --- st.c +++ st.c @@ -2493,7 +2493,7 @@ xloadfont(Font *f, FcPattern *pattern) { f->lbearing = 0; f->rbearing = f->match->max_advance_width; - f->height = f->match->height; + f->height = f->ascent + f->descent; f->width = f->lbearing + f->rbearing; return 0;