commit 2c70acc3ab751ab1ccb1999f1d22310ad8c35b27
parent 5f0fa185d0a978b45de5bf206193769596c056b5
Author: dzklaim <smooth.rp@gmail.com>
Date: Sat, 30 May 2020 01:02:10 +0000
fontsrv: scale f->originy to match f->height on x11
Co-authored-by: dzklaim <smmoth.rp@gmail.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cmd/fontsrv/x11.c b/src/cmd/fontsrv/x11.c
@@ -78,7 +78,7 @@ load(XFont *f)
}
f->unit = face->units_per_EM;
f->height = (int)((face->ascender - face->descender) * 1.35);
- f->originy = face->descender; // bbox.yMin (or descender) is negative, becase the baseline is y-coord 0
+ f->originy = face->descender * 1.35; // bbox.yMin (or descender) is negative, because the baseline is y-coord 0
for(charcode=FT_Get_First_Char(face, &glyph_index); glyph_index != 0;
charcode=FT_Get_Next_Char(face, charcode, &glyph_index)) {