diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-05-04 10:01:12 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-05-04 10:01:12 +0100 |
commit | f3221941f27dbe4dbee550f72d42f268c228f5d1 (patch) | |
tree | 2a980862da9efc8bd1e540d71e112c020147e7ae /notify.c | |
parent | 97ecb4f9d8392f48deb810a557142eb97d5345dc (diff) | |
parent | d98d31690354ec6b53206c0b24834c877cd8ad5a (diff) | |
download | rtmux-f3221941f27dbe4dbee550f72d42f268c228f5d1.tar.gz rtmux-f3221941f27dbe4dbee550f72d42f268c228f5d1.tar.bz2 rtmux-f3221941f27dbe4dbee550f72d42f268c228f5d1.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'notify.c')
-rw-r--r-- | notify.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -78,8 +78,12 @@ notify_callback(struct cmdq_item *item, void *data) log_debug("%s: %s", __func__, ne->name); + if (strcmp(ne->name, "pane-mode-changed") == 0) + control_notify_pane_mode_changed(ne->pane); if (strcmp(ne->name, "window-layout-changed") == 0) control_notify_window_layout_changed(ne->window); + if (strcmp(ne->name, "window-pane-changed") == 0) + control_notify_window_pane_changed(ne->window); if (strcmp(ne->name, "window-unlinked") == 0) control_notify_window_unlinked(ne->session, ne->window); if (strcmp(ne->name, "window-linked") == 0) @@ -94,6 +98,8 @@ notify_callback(struct cmdq_item *item, void *data) control_notify_session_created(ne->session); if (strcmp(ne->name, "session-closed") == 0) control_notify_session_closed(ne->session); + if (strcmp(ne->name, "session-window-changed") == 0) + control_notify_session_window_changed(ne->session); notify_hook(item, ne); |