diff options
author | nicm <nicm> | 2021-03-16 09:14:58 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-03-16 09:14:58 +0000 |
commit | 8b800b41c98c37a270cea61e57d1f2702fd75293 (patch) | |
tree | 7a286753c567e479e390b7cfbf24a6b26e66e7e1 /notify.c | |
parent | 9017af23556abdc31ba37c925adf6e0f1bb12671 (diff) | |
download | rtmux-8b800b41c98c37a270cea61e57d1f2702fd75293.tar.gz rtmux-8b800b41c98c37a270cea61e57d1f2702fd75293.tar.bz2 rtmux-8b800b41c98c37a270cea61e57d1f2702fd75293.zip |
Add client-detached notification in control mode, from Mohsin Kaleem.
Diffstat (limited to 'notify.c')
-rw-r--r-- | notify.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -126,6 +126,8 @@ notify_callback(struct cmdq_item *item, void *data) control_notify_window_renamed(ne->window); if (strcmp(ne->name, "client-session-changed") == 0) control_notify_client_session_changed(ne->client); + if (strcmp(ne->name, "client-detached") == 0) + control_notify_client_detached(ne->client); if (strcmp(ne->name, "session-renamed") == 0) control_notify_session_renamed(ne->session); if (strcmp(ne->name, "session-created") == 0) |