aboutsummaryrefslogtreecommitdiff
path: root/window.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2014-12-19 19:20:09 +0000
committerThomas Adam <thomas@xteddy.org>2014-12-19 19:22:19 +0000
commit5f8138faf551c3678de3c92c5764e2e7edfc4602 (patch)
tree6646056b5b2bab330ec6ec62400004548dc0aa18 /window.c
parentccbe2545d9857e03731eddb9757989b9f52dc785 (diff)
parent160e3e2be3543377925551146403933a7c631f51 (diff)
downloadrtmux-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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/window.c b/window.c
index 4d8cd1c5..54129634 100644
--- a/window.c
+++ b/window.c
@@ -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);
}