all repos — st @ 0e48a1995eee1c2babc58523ef0be296e4b1c3e8

st (suckless terminal) config

Fix vertical character alignment in some cases

The y-position of a character found by asking fontconfig for a matching
font does not take the border pixels into account, resulting in a
slightly misaligned vertical position.

Signed-off-by: Ton van den Heuvel <tonvandenheuvel@gmail.com>
Signed-off-by: Christoph Lohmann <20h@r-36.net>
Ton van den Heuvel tonvandenheuvel@gmail.com
commit

0e48a1995eee1c2babc58523ef0be296e4b1c3e8

parent

6d8f85232ec741ae2357728d6e96cb8a44e842b4

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

jump to
M st.cst.c

@@ -3671,7 +3671,7 @@

specs[numspecs].font = frc[f].font; specs[numspecs].glyph = glyphidx; specs[numspecs].x = (short)xp; - specs[numspecs].y = (short)(winy + frc[f].font->ascent); + specs[numspecs].y = (short)yp; xp += runewidth; numspecs++; }