aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Ashworth <bosrsf04@gmail.com>2019-03-06 12:16:28 -0500
committerDrew DeVault <sir@cmpwn.com>2019-03-11 10:56:20 -0400
commit776d8d8d08284431d1c626d58287e0b699a55fbe (patch)
treefae50c3d7edde342be4350cdc197ad486d327112
parent8dfdb3fa112544c52fa86ec46e05c4d0eaab6a92 (diff)
downloadsway-776d8d8d08284431d1c626d58287e0b699a55fbe.zip
sway-776d8d8d08284431d1c626d58287e0b699a55fbe.tar.gz
sway-776d8d8d08284431d1c626d58287e0b699a55fbe.tar.bz2
ipc: fix rect for stacked children
This now takes all titlebars for stacked children into account for the ipc property `rect`
-rw-r--r--sway/ipc-json.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index c008f24..bcc525a 100644
--- 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();