aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-rw-r--r--sway/container.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/container.c b/sway/container.c
index bffbe620..67aa6851 100644
--- a/sway/container.c
+++ b/sway/container.c
@@ -755,6 +755,8 @@ int swayc_gap(swayc_t *container) {
// size to make the outermost gap the same size (excluding the
// actual "outer gap" size which is handled independently)
return base + config->gaps_inner / 2;
+ } else if (config->smart_gaps && container->children->length == 1) {
+ return 0;
} else {
return base;
}