aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/layout.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-04-02 14:23:01 -0400
committerLibravatar GitHub <noreply@github.com>2018-04-02 14:23:01 -0400
commit4134407fa967c7f45cd09554b74a15f28974fca5 (patch)
treea1a6122d927b95b29375af7dbf6adccd8cb4e71f /sway/tree/layout.c
parentMerge pull request #1697 from RedSoxFan/back-and-forth (diff)
parentRender blocks the correct order (diff)
downloadsway-4134407fa967c7f45cd09554b74a15f28974fca5.tar.gz
sway-4134407fa967c7f45cd09554b74a15f28974fca5.tar.zst
sway-4134407fa967c7f45cd09554b74a15f28974fca5.zip
Merge pull request #1690 from swaywm/i3bar-json
I3bar json
Diffstat (limited to 'sway/tree/layout.c')
-rw-r--r--sway/tree/layout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
index a8941a40..de210752 100644
--- a/sway/tree/layout.c
+++ b/sway/tree/layout.c
@@ -274,8 +274,8 @@ void arrange_windows(struct sway_container *container,
274 struct wlr_box *area = &output->sway_output->usable_area; 274 struct wlr_box *area = &output->sway_output->usable_area;
275 wlr_log(L_DEBUG, "Usable area for ws: %dx%d@%d,%d", 275 wlr_log(L_DEBUG, "Usable area for ws: %dx%d@%d,%d",
276 area->width, area->height, area->x, area->y); 276 area->width, area->height, area->x, area->y);
277 container->width = area->width; 277 container->width = width = area->width;
278 container->height = area->height; 278 container->height = height = area->height;
279 container->x = x = area->x; 279 container->x = x = area->x;
280 container->y = y = area->y; 280 container->y = y = area->y;
281 wlr_log(L_DEBUG, "Arranging workspace '%s' at %f, %f", 281 wlr_log(L_DEBUG, "Arranging workspace '%s' at %f, %f",