diff options
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r-- | sway/tree/container.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 04454ab6..1b193944 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -1163,7 +1163,9 @@ void container_add_gaps(struct sway_container *c) { return; } - c->current_gaps = c->has_gaps ? c->gaps_inner : config->gaps_inner; + struct sway_container *ws = container_parent(c, C_WORKSPACE); + + c->current_gaps = ws->has_gaps ? ws->gaps_inner : config->gaps_inner; c->x += c->current_gaps; c->y += c->current_gaps; c->width -= 2 * c->current_gaps; |