diff options
author | adnano <me@adnano.co> | 2022-04-17 13:27:28 -0400 |
---|---|---|
committer | adnano <me@adnano.co> | 2022-04-17 13:27:28 -0400 |
commit | 1f9b23e41238bc51574f7dd4470a788430e5ab5f (patch) | |
tree | 6427bc52c53015b99c265f7beeca96c8065701c9 | |
parent | decd2452deddb9c8a4bdcb1a0184cd056b01a5a0 (diff) | |
download | wmenu-1f9b23e41238bc51574f7dd4470a788430e5ab5f.tar.gz |
Adjust line height
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -910,7 +910,7 @@ void read_stdin(struct menu_state *state) { static void menu_init(struct menu_state *state) { int height = get_font_height(state->font); - state->line_height = height + 2; + state->line_height = height + 3; state->height = state->line_height; if (state->vertical) { state->height += state->height * state->lines; |