diff options
author | D.B <thejan.2009@gmail.com> | 2016-07-21 22:55:01 +0200 |
---|---|---|
committer | D.B <thejan.2009@gmail.com> | 2016-07-21 22:58:13 +0200 |
commit | d61b59cad1a85e423ff1410e6ed19ef0006f8814 (patch) | |
tree | 0ca1dfc40e6f7c3fa461106637b0b236fd36a77f /sway/container.c | |
parent | 9fe1d3da381296966e01d922ce6e54d0e55e7c00 (diff) |
outer gap 0 with smart_gaps on
Diffstat (limited to 'sway/container.c')
-rw-r--r-- | sway/container.c | 2 |
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; } |