From 0a5dd8e972c24cef6a5c9e5e9d24e81e6492000c Mon Sep 17 00:00:00 2001 From: Andreas Grapentin Date: Thu, 25 Jan 2018 20:44:51 +0100 Subject: pcr/rxvt-unicode-pixbuf: added --- pcr/rxvt-unicode-pixbuf/line-spacing-fix.patch | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pcr/rxvt-unicode-pixbuf/line-spacing-fix.patch (limited to 'pcr/rxvt-unicode-pixbuf/line-spacing-fix.patch') diff --git a/pcr/rxvt-unicode-pixbuf/line-spacing-fix.patch b/pcr/rxvt-unicode-pixbuf/line-spacing-fix.patch new file mode 100644 index 000000000..8431c4fa0 --- /dev/null +++ b/pcr/rxvt-unicode-pixbuf/line-spacing-fix.patch @@ -0,0 +1,25 @@ +--- src/rxvtfont.C.orig 2011-07-20 22:19:29.878012201 -0300 ++++ src/rxvtfont.C 2011-07-20 22:19:33.634671723 -0300 +@@ -1237,11 +1237,22 @@ + + FT_Face face = XftLockFace (f); + ++/* ++ * use ascent, descent and height from XftFont *f instead of FT_Face face. ++ * this somehow reproduces the behaviour of the line height as seen on xterm. ++ + ascent = (face->size->metrics.ascender + 63) >> 6; + descent = (-face->size->metrics.descender + 63) >> 6; + height = max (ascent + descent, (face->size->metrics.height + 63) >> 6); + width = 0; + ++ */ ++ ++ ascent = f->ascent; ++ descent = f->descent; ++ height = max (ascent + descent, f->height); ++ width = 0; ++ + bool scalable = face->face_flags & FT_FACE_FLAG_SCALABLE; + + XftUnlockFace (f); -- cgit v1.2.3