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

@ -636,7 +636,7 @@ screen_redraw_pane(struct client *c, struct window_pane *wp)
{
struct screen_redraw_ctx ctx;
if (c->overlay_draw != NULL || !window_pane_visible(wp))
if (!window_pane_visible(wp))
return;
screen_redraw_set_context(c, &ctx);