all repos — st @ 55adf0aad1d5acf0b9a00e2a9f834cef8b61b3b3

st (suckless terminal) config

Pange seems to use ascent + descent instead of height.

Thanks Bobby Powers <bobbypowers@gmail.com> for noticing this!
Christoph Lohmann 20h@r-36.net
commit

55adf0aad1d5acf0b9a00e2a9f834cef8b61b3b3

parent

82494f248d778e1195a9eabfac916ce08c52b6da

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M st.cst.c

@@ -2493,7 +2493,7 @@ f->descent = f->match->descent;

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;