fontsrv: increase x11 font height scale (#111)
This commit is contained in:
parent
f3ed5754b1
commit
ed959cfba3
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ load(XFont *f)
|
|||
return;
|
||||
}
|
||||
f->unit = face->units_per_EM;
|
||||
f->height = (int)((face->ascender - face->descender) * 1.2);
|
||||
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
|
||||
|
||||
for(charcode=FT_Get_First_Char(face, &glyph_index); glyph_index != 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue