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.
This commit is contained in:
S. Christoffer Eliesen 2015-12-20 21:21:08 +01:00
parent ce54b4ff2e
commit f4b9c3856a

View file

@ -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);