sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 8ada2daba5f58fe2bba77127bedd4e9af7c8844f
parent 8b6bd106aa92192e9e2aa6781e9b2e51f1e22fe2
Author: Brian Ashworth <bosrsf04@gmail.com>
Date:   Wed,  6 Mar 2019 12:16:28 -0500

ipc: fix rect for stacked children

This now takes all titlebars for stacked children into account for the
ipc property `rect`

Diffstat:
Msway/ipc-json.c | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/sway/ipc-json.c b/sway/ipc-json.c @@ -535,8 +535,12 @@ json_object *ipc_json_describe_node(struct sway_node *node) { if (node->type == N_CONTAINER) { struct wlr_box deco_rect = {0, 0, 0, 0}; get_deco_rect(node->sway_container, &deco_rect); - box.y += deco_rect.height; - box.height -= deco_rect.height; + size_t count = 1; + if (container_parent_layout(node->sway_container) == L_STACKED) { + count = container_get_siblings(node->sway_container)->length; + } + box.y += deco_rect.height * count; + box.height -= deco_rect.height * count; } json_object *focus = json_object_new_array();