commit f4b9c3856a03ce51d8761c32da8bd0986680b534
parent ce54b4ff2eeda61ead9389a9bfd41aa7310a6ece
Author: S. Christoffer Eliesen <christoffer@eliesen.no>
Date: Sun, 20 Dec 2015 21:21:08 +0100
layout: Fix `edge_gaps off` with top/left panels.
Since x/y won't be zero when there's a top or left panel in place, we
need to take those coordinates into account too.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sway/layout.c b/sway/layout.c
@@ -398,10 +398,10 @@ void update_geometry(swayc_t *container) {
geometry.size.h = container->height - gap/2;
}
if (container->x + container->width + gap >= ws->x + ws->width) {
- geometry.size.w = ws->width - geometry.origin.x;
+ geometry.size.w = ws->x + ws->width - geometry.origin.x;
}
if (container->y + container->height + gap >= ws->y + ws->height) {
- geometry.size.h = ws->height - geometry.origin.y;
+ geometry.size.h = ws->y + ws->height - geometry.origin.y;
}
}
wlc_view_set_geometry(container->handle, 0, &geometry);