summaryrefslogtreecommitdiffstats
path: root/screen-redraw.c
diff options
context:
space:
mode:
authornicm <nicm>2021-08-05 09:43:51 +0000
committernicm <nicm>2021-08-05 09:43:51 +0000
commit93cc8df6929e0a7c63ce2f0403276a064c290adb (patch)
tree04dc34eea75b822507c9e5b6b508230eab22a0e8 /screen-redraw.c
parent42490f4750bb6f39c08908e8e7a3b85022a077af (diff)
Do not freeze output in panes when a popup is open, let them continue to
redraw. From Anindya Mukherjee .
Diffstat (limited to 'screen-redraw.c')
-rw-r--r--screen-redraw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/screen-redraw.c b/screen-redraw.c
index cf3e29f6..729bfb7e 100644
--- a/screen-redraw.c
+++ b/screen-redraw.c
@@ -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);