diff options
author | Thomas Adam <thomas@xteddy.org> | 2014-12-19 19:20:09 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2014-12-19 19:22:19 +0000 |
commit | 5f8138faf551c3678de3c92c5764e2e7edfc4602 (patch) | |
tree | 6646056b5b2bab330ec6ec62400004548dc0aa18 /window.c | |
parent | ccbe2545d9857e03731eddb9757989b9f52dc785 (diff) | |
parent | 160e3e2be3543377925551146403933a7c631f51 (diff) | |
download | rtmux-5f8138faf551c3678de3c92c5764e2e7edfc4602.tar.gz rtmux-5f8138faf551c3678de3c92c5764e2e7edfc4602.tar.bz2 rtmux-5f8138faf551c3678de3c92c5764e2e7edfc4602.zip |
Merge branch 'obsd-master'
Conflicts:
format.c
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -490,6 +490,7 @@ window_zoom(struct window_pane *wp) w->saved_layout_root = w->layout_root; layout_init(w, wp); w->flags |= WINDOW_ZOOMED; + notify_window_layout_changed(w); return (0); } @@ -511,6 +512,7 @@ window_unzoom(struct window *w) wp->saved_layout_cell = NULL; } layout_fix_panes(w, w->sx, w->sy); + notify_window_layout_changed(w); return (0); } |