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 0233a36e..d2aee9a9 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -160,7 +160,8 @@ static void ipc_json_describe_view(struct sway_container *c, json_object *object
160 json_object_object_add(object, "type", json_object_new_string("con")); 160 json_object_object_add(object, "type", json_object_new_string("con"));
161 161
162 if (c->parent) { 162 if (c->parent) {
163 enum sway_container_layout layout = (c->parent->type == C_CONTAINER) ? 163 enum sway_container_layout layout =
164 (c->parent->type == C_CONTAINER && c->type == C_VIEW) ?
164 c->parent->layout : c->layout; 165 c->parent->layout : c->layout;
165 166
166 json_object_object_add(object, "layout", 167 json_object_object_add(object, "layout",