Do not close popups on resize, instead adjust them to fit, from Anindya

Mukherjee.
This commit is contained in:
nicm
2021-07-21 08:06:36 +00:00
parent 732c72c98e
commit f0e02387b2
5 changed files with 72 additions and 10 deletions

2
menu.c
View File

@ -390,6 +390,6 @@ menu_display(struct menu *menu, int flags, struct cmdq_item *item, u_int px,
md->data = data;
server_client_set_overlay(c, 0, NULL, menu_mode_cb, menu_draw_cb,
menu_key_cb, menu_free_cb, md);
menu_key_cb, menu_free_cb, NULL, md);
return (0);
}