Fix resizing of control clients, should be ignored until SIZECHANGED flag set.

This commit is contained in:
nicm
2019-03-12 13:56:30 +00:00
parent 303d20a758
commit 028f9d1d87
4 changed files with 27 additions and 26 deletions

View File

@ -503,8 +503,8 @@ window_get_active_at(struct window *w, u_int x, u_int y)
struct window_pane *wp;
TAILQ_FOREACH(wp, &w->panes, entry) {
if (!window_pane_visible(wp))
continue;
if (!window_pane_visible(wp))
continue;
if (x < wp->xoff || x > wp->xoff + wp->sx)
continue;
if (y < wp->yoff || y > wp->yoff + wp->sy)