mirror of
https://github.com/tmux/tmux.git
synced 2025-12-21 00:02:29 -05:00
Merge branch 'master' of github.com:tmux/tmux
This commit is contained in:
commit
c83d6ee0b1
4
window.c
4
window.c
@ -1140,7 +1140,9 @@ window_pane_key(struct window_pane *wp, struct client *c, struct session *s,
|
|||||||
TAILQ_FOREACH(wp2, &wp->window->panes, entry) {
|
TAILQ_FOREACH(wp2, &wp->window->panes, entry) {
|
||||||
if (wp2 == wp || wp2->mode != NULL)
|
if (wp2 == wp || wp2->mode != NULL)
|
||||||
continue;
|
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);
|
input_key(wp2, key, NULL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user