aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authorIan Fan <ianfan0@gmail.com>2018-07-16 14:01:35 +0100
committerIan Fan <ianfan0@gmail.com>2018-08-01 16:57:15 +0100
commit07101a570750f47fa5d4fb81739a40168b6c8ea6 (patch)
tree9aef1c3dfdc48327fb7a66073cc6beb8d5a51648 /sway
parent317217f2c87aba4463806e211c22296ac9230b6c (diff)
ipc: only emit window::create event for views
Diffstat (limited to 'sway')
-rw-r--r--sway/tree/container.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 3b3c5e2e..92d9ce06 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -62,7 +62,7 @@ void container_create_notify(struct sway_container *container) {
// TODO send ipc event type based on the container type
wl_signal_emit(&root_container.sway_root->events.new_container, container);
- if (container->type == C_VIEW || container->type == C_CONTAINER) {
+ if (container->type == C_VIEW) {
ipc_event_window(container, "new");
} else if (container->type == C_WORKSPACE) {
ipc_event_workspace(NULL, container, "init");