From e4c4627eebc57a6af5812c69f6dc3f9992d9c770 Mon Sep 17 00:00:00 2001 From: sewn Date: Tue, 9 Apr 2024 11:12:49 +0300 Subject: make menu height accurate to dwm, dmenu, and dwl's bar patch --- menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu.c b/menu.c index 953aa95..549b730 100644 --- a/menu.c +++ b/menu.c @@ -165,7 +165,7 @@ void menu_getopts(struct menu *menu, int argc, char *argv[]) { } int height = get_font_height(menu->font); - menu->line_height = height + 3; + menu->line_height = height + 2; menu->height = menu->line_height; if (menu->lines > 0) { menu->height += menu->height * menu->lines; -- cgit v1.2.3