From 7fbd2f5498f30383d145653fe5d1e542fbd6ad43 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 25 Aug 2018 13:55:50 +0100 Subject: Do not draw cells which have no cell (zoomed and they are not active). --- tty.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tty.c') diff --git a/tty.c b/tty.c index a6cfadf9..495366e4 100644 --- a/tty.c +++ b/tty.c @@ -1330,6 +1330,8 @@ tty_client_ready(struct client *c, struct window_pane *wp) return (0); if (c->session->curw->window != wp->window) return (0); + if (wp->layout_cell == NULL) + return (0); return (1); } -- cgit