diff options
author | taiyu <taiyu.len@gmail.com> | 2015-08-15 14:35:55 -0700 |
---|---|---|
committer | taiyu <taiyu.len@gmail.com> | 2015-08-15 14:35:55 -0700 |
commit | 8752a166ed5ecddd67fc383934c1c3a580ece49b (patch) | |
tree | 063da5ca2d1e87f28c46775601fe792adee7298d /sway/layout.c | |
parent | 824a3d81aad8e3eb81c80d07bf6554be9fe214cf (diff) | |
parent | 4014b215ebe39ad4b9c624c10f57a3660d5e626d (diff) |
Merge branch 'master' of https://github.com/SirCmpwn/sway
merging
Diffstat (limited to 'sway/layout.c')
-rw-r--r-- | sway/layout.c | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/sway/layout.c b/sway/layout.c index 3fd7f5c1..918da9f0 100644 --- a/sway/layout.c +++ b/sway/layout.c @@ -95,15 +95,28 @@ void arrange_windows(swayc_t *container, int width, int height) { child->x = x; child->y = y; arrange_windows(child, -1, -1); - x += child->width; + // Removed for now because wlc works with relative positions + // Addition can be reconsidered once wlc positions are changed + // x += child->width; } return; case C_OUTPUT: container->width = width; container->height = height; - x -= container->x; - y -= container->y; - break; + // These lines make x/y negative and result in stuff glitching out + // Their addition can be reconsidered once wlc positions are changed + // x -= container->x; + // y -= container->y; + for (i = 0; i < container->children->length; ++i) { + swayc_t *child = container->children->items[i]; + sway_log(L_DEBUG, "Arranging workspace #%d", i); + child->x = x; + child->y = y; + child->width = width; + child->height = height; + arrange_windows(child, -1, -1); + } + return; case C_VIEW: { struct wlc_geometry geometry = { |