Notify on zoom/unzoom, from George Nachmann.
authornicm <nicm@openbsd.org>
Mon, 15 Dec 2014 10:04:18 +0000 (10:04 +0000)
committernicm <nicm@openbsd.org>
Mon, 15 Dec 2014 10:04:18 +0000 (10:04 +0000)
usr.bin/tmux/window.c

index 86771dd..9c4ade5 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: window.c,v 1.114 2014/10/21 22:22:04 nicm Exp $ */
+/* $OpenBSD: window.c,v 1.115 2014/12/15 10:04:18 nicm Exp $ */
 
 /*
  * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -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);
 }