diff options
author | taiyu <[email protected]> | 2015-08-20 05:08:04 -0700 |
---|---|---|
committer | taiyu <[email protected]> | 2015-08-20 05:08:04 -0700 |
commit | 927ef0a5ecbd5fae71e862cdd9b6c83fa1c481d8 (patch) | |
tree | fa696b1ab1925041fa744d1c56c8e2c30201f076 /sway/container.c | |
parent | f5fde7c45c04b02406eabc34cbb4248189c6a26e (diff) | |
parent | 95f5660897b6640f13623178651f45549a917efb (diff) |
Merge branch 'master' of https://github.com/SirCmpwn/sway
merging
Diffstat (limited to 'sway/container.c')
-rw-r--r-- | sway/container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/container.c b/sway/container.c index 7da33b48..4559a5f5 100644 --- a/sway/container.c +++ b/sway/container.c @@ -66,7 +66,7 @@ swayc_t *new_output(wlc_handle handle) { output->height = size->h; output->handle = handle; output->name = name ? strdup(name) : NULL; - output->gaps = config->gaps_outer; + output->gaps = config->gaps_outer + config->gaps_inner / 2; add_child(&root_container, output); |