diff options
author | nicm <nicm> | 2014-12-15 10:04:18 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-12-15 10:04:18 +0000 |
commit | 160e3e2be3543377925551146403933a7c631f51 (patch) | |
tree | 7320e073027755ae974b333fd4f0ecb4ab1ccc97 | |
parent | d88c381ce912dfc48fc2d53ed020bf2016f4b509 (diff) | |
download | rtmux-160e3e2be3543377925551146403933a7c631f51.tar.gz rtmux-160e3e2be3543377925551146403933a7c631f51.tar.bz2 rtmux-160e3e2be3543377925551146403933a7c631f51.zip |
Notify on zoom/unzoom, from George Nachmann.
-rw-r--r-- | window.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -491,6 +491,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); } @@ -512,6 +513,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); } |