If a pane is "zombified" (remain-on-exit flag), don't continue to queue key and

mouse input for it (otherwise they are processed after respawn).
This commit is contained in:
Nicholas Marriott 2009-06-23 20:17:30 +00:00
parent c2b0fdae5b
commit 69f3c24647

View File

@ -554,6 +554,9 @@ window_pane_parse(struct window_pane *wp)
void void
window_pane_key(struct window_pane *wp, struct client *c, int key) window_pane_key(struct window_pane *wp, struct client *c, int key)
{ {
if (wp->fd == -1)
return;
if (wp->mode != NULL) { if (wp->mode != NULL) {
if (wp->mode->key != NULL) if (wp->mode->key != NULL)
wp->mode->key(wp, c, key); wp->mode->key(wp, c, key);
@ -565,6 +568,9 @@ void
window_pane_mouse( window_pane_mouse(
struct window_pane *wp, struct client *c, u_char b, u_char x, u_char y) struct window_pane *wp, struct client *c, u_char b, u_char x, u_char y)
{ {
if (wp->fd == -1)
return;
/* XXX convert from 1-based? */ /* XXX convert from 1-based? */
if (x < wp->xoff || x >= wp->xoff + wp->sx) if (x < wp->xoff || x >= wp->xoff + wp->sx)