Do not ignore the "off" flag when checking if a pane should be stopped,

GitHub issue 3250.
pull/3269/head
nicm 2022-07-19 07:10:13 +00:00
parent 86dfbda0e4
commit ee431d482a
1 changed files with 2 additions and 1 deletions

View File

@ -2221,7 +2221,8 @@ server_client_check_pane_buffer(struct window_pane *wp)
}
wpo = control_pane_offset(c, wp, &flag);
if (wpo == NULL) {
off = 0;
if (!flag)
off = 0;
continue;
}
if (!flag)