diff options
author | KoffeinFlummi <[email protected]> | 2015-08-18 23:53:57 +0200 |
---|---|---|
committer | KoffeinFlummi <[email protected]> | 2015-08-18 23:53:57 +0200 |
commit | 4c688cba4e3528921656d63a09f7015cae13cd0c (patch) | |
tree | e6f0a07953c900973a48abf467979c0e325c7389 /sway/config.c | |
parent | 2139001c9f61a84ed1ac581a54bb2bde68928afd (diff) |
Add support for gaps option
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c index 6d39839d..b0b66315 100644 --- a/sway/config.c +++ b/sway/config.c @@ -170,6 +170,8 @@ void config_defaults(struct sway_config *config) { config->reloading = false; config->active = false; config->failed = false; + config->gaps_inner = 0; + config->gaps_outer = 0; } bool read_config(FILE *file, bool is_active) { |