mirror of
https://github.com/tmux/tmux.git
synced 2024-11-08 04:08:49 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
58b3d66229
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) {
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user