Make input off flag (selectp -d) apply to synchronize-panes too.

pull/243/merge
nicm 2015-12-19 08:43:04 +00:00
parent a337403868
commit bdbec099cc
1 changed files with 3 additions and 1 deletions

View File

@ -1127,7 +1127,9 @@ window_pane_key(struct window_pane *wp, struct client *c, struct session *s,
TAILQ_FOREACH(wp2, &wp->window->panes, entry) {
if (wp2 == wp || wp2->mode != NULL)
continue;
if (wp2->fd != -1 && window_pane_visible(wp2))
if (wp2->fd == -1 || wp2->flags & PANE_INPUTOFF)
continue;
if (window_pane_visible(wp2))
input_key(wp2, key, NULL);
}
}