Set pane resize flag when needed.

This commit is contained in:
Nicholas Marriott 2013-03-25 11:55:01 +00:00
parent 673eb160d4
commit 58bb6f8c56

View File

@ -918,6 +918,8 @@ window_pane_resize(struct window_pane *wp, u_int sx, u_int sy)
screen_resize(&wp->base, sx, sy, wp->saved_grid == NULL);
if (wp->mode != NULL)
wp->mode->resize(wp, sx, sy);
wp->flags |= PANE_RESIZE;
}
/*