sway

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

commit 22226560e398a0d25ac1e7e8f4b35723f40f659f
parent 1b8719f167dd92af9756bb5a7175bfc33a0c42e4
Author: Simon Ser <contact@emersion.fr>
Date:   Mon,  5 Jul 2021 10:09:39 +0200

tree/container: fix indentation

Diffstat:
Msway/tree/container.c | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/sway/tree/container.c b/sway/tree/container.c @@ -320,10 +320,10 @@ static struct sway_container *view_container_content_at(struct sway_node *parent struct sway_container *container = parent->sway_container; struct wlr_box box = { - .x = container->pending.content_x, - .y = container->pending.content_y, - .width = container->pending.content_width, - .height = container->pending.content_height, + .x = container->pending.content_x, + .y = container->pending.content_y, + .width = container->pending.content_width, + .height = container->pending.content_height, }; if (wlr_box_contains_point(&box, lx, ly)) { @@ -343,10 +343,10 @@ static struct sway_container *view_container_at(struct sway_node *parent, struct sway_container *container = parent->sway_container; struct wlr_box box = { - .x = container->pending.x, - .y = container->pending.y, - .width = container->pending.width, - .height = container->pending.height, + .x = container->pending.x, + .y = container->pending.y, + .width = container->pending.width, + .height = container->pending.height, }; if (wlr_box_contains_point(&box, lx, ly)) {