aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/ipc-json.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index bc36f9b1..7c5a0a5d 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -273,7 +273,8 @@ static void ipc_json_describe_view(struct sway_container *c, json_object *object
273static void ipc_json_describe_container(struct sway_container *c, json_object *object) { 273static void ipc_json_describe_container(struct sway_container *c, json_object *object) {
274 json_object_object_add(object, "name", 274 json_object_object_add(object, "name",
275 c->title ? json_object_new_string(c->title) : NULL); 275 c->title ? json_object_new_string(c->title) : NULL);
276 json_object_object_add(object, "type", json_object_new_string("con")); 276 json_object_object_add(object, "type",
277 json_object_new_string(container_is_floating(c) ? "floating_con" : "con"));
277 278
278 json_object_object_add(object, "layout", 279 json_object_object_add(object, "layout",
279 json_object_new_string(ipc_json_layout_description(c->layout))); 280 json_object_new_string(ipc_json_layout_description(c->layout)));