=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/server-client.c,v retrieving revision 1.259 retrieving revision 1.260 diff -c -r1.259 -r1.260 *** src/usr.bin/tmux/server-client.c 2018/08/29 09:50:32 1.259 --- src/usr.bin/tmux/server-client.c 2018/09/11 06:37:54 1.260 *************** *** 1,4 **** ! /* $OpenBSD: server-client.c,v 1.259 2018/08/29 09:50:32 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: server-client.c,v 1.260 2018/09/11 06:37:54 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 523,549 **** else if (m->statusat > 0 && y >= (u_int)m->statusat) y = m->statusat - 1; ! TAILQ_FOREACH(wp, &s->curw->window->panes, entry) { ! if ((wp->xoff + wp->sx == x && ! wp->yoff <= 1 + y && ! wp->yoff + wp->sy >= y) || ! (wp->yoff + wp->sy == y && ! wp->xoff <= 1 + x && ! wp->xoff + wp->sx >= x)) ! break; } ! if (wp != NULL) ! where = BORDER; ! else { wp = window_get_active_at(s->curw->window, x, y); ! if (wp != NULL) { where = PANE; - log_debug("mouse at %u,%u is on pane %%%u", - x, y, wp->id); - } } if (where == NOWHERE) return (KEYC_UNKNOWN); m->wp = wp->id; m->w = wp->window->id; } else --- 523,556 ---- else if (m->statusat > 0 && y >= (u_int)m->statusat) y = m->statusat - 1; ! /* Try the pane borders if not zoomed. */ ! if (~s->curw->window->flags & WINDOW_ZOOMED) { ! TAILQ_FOREACH(wp, &s->curw->window->panes, entry) { ! if ((wp->xoff + wp->sx == x && ! wp->yoff <= 1 + y && ! wp->yoff + wp->sy >= y) || ! (wp->yoff + wp->sy == y && ! wp->xoff <= 1 + x && ! wp->xoff + wp->sx >= x)) ! break; ! } ! if (wp != NULL) ! where = BORDER; } ! ! /* Otherwise try inside the pane. */ ! if (where == NOWHERE) { wp = window_get_active_at(s->curw->window, x, y); ! if (wp != NULL) where = PANE; } + if (where == NOWHERE) return (KEYC_UNKNOWN); + if (where == PANE) + log_debug("mouse %u,%u on pane %%%u", x, y, wp->id); + else if (where == BORDER) + log_debug("mouse on pane %%%u border", wp->id); m->wp = wp->id; m->w = wp->window->id; } else