aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Ian Fan <ianfan0@gmail.com>2018-08-26 11:01:54 +0100
committerLibravatar Ian Fan <ianfan0@gmail.com>2018-08-26 19:01:09 +0100
commit6ae2e3a4a80df054cb6d5ad164a28a0094bced1d (patch)
tree80b86b07b59056c9087817e92c42fab4821f38ae
parentipc: emit window close event earlier, before destroying (diff)
downloadsway-6ae2e3a4a80df054cb6d5ad164a28a0094bced1d.tar.gz
sway-6ae2e3a4a80df054cb6d5ad164a28a0094bced1d.tar.zst
sway-6ae2e3a4a80df054cb6d5ad164a28a0094bced1d.zip
ipc: clean-up container_create_notify function
-rw-r--r--sway/tree/container.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 6520c176..58fd4898 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -42,14 +42,12 @@ const char *container_type_to_str(enum sway_container_type type) {
42} 42}
43 43
44void container_create_notify(struct sway_container *container) { 44void container_create_notify(struct sway_container *container) {
45 // TODO send ipc event type based on the container type
46 wl_signal_emit(&root_container.sway_root->events.new_container, container);
47
48 if (container->type == C_VIEW) { 45 if (container->type == C_VIEW) {
49 ipc_event_window(container, "new"); 46 ipc_event_window(container, "new");
50 } else if (container->type == C_WORKSPACE) { 47 } else if (container->type == C_WORKSPACE) {
51 ipc_event_workspace(NULL, container, "init"); 48 ipc_event_workspace(NULL, container, "init");
52 } 49 }
50 wl_signal_emit(&root_container.sway_root->events.new_container, container);
53} 51}
54 52
55void container_update_textures_recursive(struct sway_container *con) { 53void container_update_textures_recursive(struct sway_container *con) {