From f4b9c3856a03ce51d8761c32da8bd0986680b534 Mon Sep 17 00:00:00 2001 From: "S. Christoffer Eliesen" Date: Sun, 20 Dec 2015 21:21:08 +0100 Subject: [PATCH] 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. --- sway/layout.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sway/layout.c b/sway/layout.c index 6d82921c..a9e7c7f1 100644 --- 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);