diff options
-rw-r--r-- | drw.c | 1 | ||||
-rw-r--r-- | drw.h | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -135,6 +135,7 @@ xfont_create(Drw *drw, const char *fontname, FcPattern *fontpattern) font = ecalloc(1, sizeof(Fnt)); font->xfont = xfont; + font->xfont->ascent += font_ascent_pad; font->pattern = pattern; font->h = xfont->ascent + xfont->descent; font->dpy = drw->dpy; @@ -1,5 +1,7 @@ /* See LICENSE file for copyright and license details. */ +static const int font_ascent_pad = 3; + typedef struct { Cursor cursor; } Cur; |