diff options
author | 2018-07-02 12:39:14 +0000 | |
---|---|---|
committer | 2018-07-02 12:39:14 +0000 | |
commit | eba82446a20ca39bdbf3ce422e83a6d13850d2d1 (patch) | |
tree | fb2534afb6ff4aa72aa3af3552ac6c3208a431ee /usr.bin/tmux/cmd-select-layout.c | |
parent | explicitly document some common pkg_add features that also make sense (diff) | |
download | wireguard-openbsd-eba82446a20ca39bdbf3ce422e83a6d13850d2d1.tar.xz wireguard-openbsd-eba82446a20ca39bdbf3ce422e83a6d13850d2d1.zip |
Fire notify for select-layout, from George Nachman.
Diffstat (limited to 'usr.bin/tmux/cmd-select-layout.c')
-rw-r--r-- | usr.bin/tmux/cmd-select-layout.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd-select-layout.c b/usr.bin/tmux/cmd-select-layout.c index e024f7bd977..bc914123a8f 100644 --- a/usr.bin/tmux/cmd-select-layout.c +++ b/usr.bin/tmux/cmd-select-layout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-select-layout.c,v 1.34 2017/11/15 19:59:27 nicm Exp $ */ +/* $OpenBSD: cmd-select-layout.c,v 1.35 2018/07/02 12:39:14 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -136,6 +136,7 @@ cmd_select_layout_exec(struct cmd *self, struct cmdq_item *item) changed: free(oldlayout); server_redraw_window(w); + notify_window("window-layout-changed", w); return (CMD_RETURN_NORMAL); error: |