aboutsummaryrefslogtreecommitdiffstats
path: root/sway/ipc-json.c
diff options
context:
space:
mode:
authorLibravatar Ian Fan <ianfan0@gmail.com>2018-10-06 18:11:05 +0100
committerLibravatar Ian Fan <ianfan0@gmail.com>2018-10-06 18:11:05 +0100
commit2cda0b1fe16be54ca38eb8924874d2f6fbdf6071 (patch)
tree84f52b5e53457d8c375fb2ce308c5ac1faebf19a /sway/ipc-json.c
parentMerge pull request #2776 from swaywm/swaylock-setuid (diff)
downloadsway-2cda0b1fe16be54ca38eb8924874d2f6fbdf6071.tar.gz
sway-2cda0b1fe16be54ca38eb8924874d2f6fbdf6071.tar.zst
sway-2cda0b1fe16be54ca38eb8924874d2f6fbdf6071.zip
ipc: set "type" of floating containers to "floating_con"
Diffstat (limited to 'sway/ipc-json.c')
-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)));