Need to always check focus even if not current window.

pull/1819/head
nicm 2019-06-20 19:29:38 +00:00
parent cb5e681ef6
commit 97a317a656
1 changed files with 3 additions and 2 deletions

View File

@ -1265,10 +1265,11 @@ server_client_loop(void)
break;
}
TAILQ_FOREACH(wp, &w->panes, entry) {
if (wl != NULL && wp->fd != -1) {
if (wp->fd != -1) {
if (focus)
server_client_check_focus(wp);
server_client_check_resize(wp);
if (wl != NULL)
server_client_check_resize(wp);
}
wp->flags &= ~PANE_REDRAW;
}