From 889e73d974b1c06944c295661ac8529d1fa8fed5 Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Sat, 16 Mar 2019 16:05:37 +0100 Subject: Modified font ascent to make up for some change in the dependencies --- dwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwm.c b/dwm.c index eb330e8..d9c4470 100644 --- a/dwm.c +++ b/dwm.c @@ -1292,7 +1292,7 @@ initfont(const char *fontstr) { && !(dc.font.xfont = XftFontOpenName(dpy, screen, "fixed"))) die("error, cannot load font: '%s'\n", fontstr); - dc.font.ascent = dc.font.xfont->ascent; + dc.font.ascent = dc.font.xfont->ascent + 3; dc.font.descent = dc.font.xfont->descent; dc.font.height = dc.font.ascent + dc.font.descent; } -- cgit v1.2.3