aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-10-06 19:45:54 +0200
committerGitHub <noreply@github.com>2018-10-06 19:45:54 +0200
commitf1d8ba69a645b7b7ae1d59a0f4df9cb24c266182 (patch)
tree84f52b5e53457d8c375fb2ce308c5ac1faebf19a
parent176832fe30576ccfbb7dee3d9e600e56abf21da1 (diff)
parent2cda0b1fe16be54ca38eb8924874d2f6fbdf6071 (diff)
downloadsway-f1d8ba69a645b7b7ae1d59a0f4df9cb24c266182.zip
sway-f1d8ba69a645b7b7ae1d59a0f4df9cb24c266182.tar.gz
sway-f1d8ba69a645b7b7ae1d59a0f4df9cb24c266182.tar.bz2
Merge pull request #2779 from ianyfan/ipc
ipc: set "type" of floating containers to "floating_con"
-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 bc36f9b..7c5a0a5 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
static void ipc_json_describe_container(struct sway_container *c, json_object *object) {
json_object_object_add(object, "name",
c->title ? json_object_new_string(c->title) : NULL);
- json_object_object_add(object, "type", json_object_new_string("con"));
+ json_object_object_add(object, "type",
+ json_object_new_string(container_is_floating(c) ? "floating_con" : "con"));
json_object_object_add(object, "layout",
json_object_new_string(ipc_json_layout_description(c->layout)));