diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-12-20 11:26:12 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-12-20 11:26:12 +0000 |
commit | c83d6ee0b1e0bb8520c88dd701c6c591895bcde5 (patch) | |
tree | 0fe3a31b3381a8e92cb1c0a0a8431455d29fd257 | |
parent | 83c96d2685a36166f2826c43e644c4b3a6c6d535 (diff) | |
parent | 58b3d662292c8d5447a56970cca60087b14176bc (diff) | |
download | rtmux-c83d6ee0b1e0bb8520c88dd701c6c591895bcde5.tar.gz rtmux-c83d6ee0b1e0bb8520c88dd701c6c591895bcde5.tar.bz2 rtmux-c83d6ee0b1e0bb8520c88dd701c6c591895bcde5.zip |
Merge branch 'master' of github.com:tmux/tmux
-rw-r--r-- | window.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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); } } |