mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 13:04:11 +01:00
ipc: fix rect for stacked children
This now takes all titlebars for stacked children into account for the ipc property `rect`
This commit is contained in:
parent
8b6bd106aa
commit
8ada2daba5
@ -535,8 +535,12 @@ json_object *ipc_json_describe_node(struct sway_node *node) {
|
|||||||
if (node->type == N_CONTAINER) {
|
if (node->type == N_CONTAINER) {
|
||||||
struct wlr_box deco_rect = {0, 0, 0, 0};
|
struct wlr_box deco_rect = {0, 0, 0, 0};
|
||||||
get_deco_rect(node->sway_container, &deco_rect);
|
get_deco_rect(node->sway_container, &deco_rect);
|
||||||
box.y += deco_rect.height;
|
size_t count = 1;
|
||||||
box.height -= deco_rect.height;
|
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();
|
json_object *focus = json_object_new_array();
|
||||||
|
Loading…
Reference in New Issue
Block a user