Do not freeze output in panes when a popup is open, let them continue to

redraw. From Anindya Mukherjee .
This commit is contained in:
nicm
2021-08-05 09:43:51 +00:00
parent 42490f4750
commit 93cc8df692
4 changed files with 91 additions and 23 deletions

View File

@ -117,7 +117,8 @@ server_client_set_overlay(struct client *c, u_int delay,
c->overlay_resize = resizecb;
c->overlay_data = data;
c->tty.flags |= TTY_FREEZE;
if (c->overlay_check == NULL)
c->tty.flags |= TTY_FREEZE;
if (c->overlay_mode == NULL)
c->tty.flags |= TTY_NOCURSOR;
server_redraw_client(c);