Notify on zoom/unzoom, from George Nachmann.

This commit is contained in:
nicm 2014-12-15 10:04:18 +00:00
parent d88c381ce9
commit 160e3e2be3
1 changed files with 2 additions and 0 deletions

View File

@ -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);
}