diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-25 11:55:01 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-25 11:55:01 +0000 |
commit | 58bb6f8c5650d496fb3b872766c0278aa024631d (patch) | |
tree | fed4515e0af90eb07a87225b77a379ff38d596af | |
parent | 673eb160d428b294cea1ed5ca2a2c3cb3760b00f (diff) | |
download | rtmux-58bb6f8c5650d496fb3b872766c0278aa024631d.tar.gz rtmux-58bb6f8c5650d496fb3b872766c0278aa024631d.tar.bz2 rtmux-58bb6f8c5650d496fb3b872766c0278aa024631d.zip |
Set pane resize flag when needed.
-rw-r--r-- | window.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; } /* |