diff options
author | Luminarys <[email protected]> | 2015-08-18 21:05:58 -0500 |
---|---|---|
committer | Luminarys <[email protected]> | 2015-08-18 21:05:58 -0500 |
commit | f718556a850a5c2bff6a00729c11f630c4b9c00f (patch) | |
tree | a7c89cdcf98d5a2fc4881fc2c5ca500e8e8ffabb /sway/config.c | |
parent | ab5805ca6eacb77494b09b1b20d278141dfa7093 (diff) |
Removed debugging, added in proper gap resets for config reloads
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c index 637e2dbc..be9f70c1 100644 --- a/sway/config.c +++ b/sway/config.c @@ -8,6 +8,7 @@ #include "log.h" #include "commands.h" #include "config.h" +#include "layout.h" struct sway_config *config; @@ -227,6 +228,8 @@ _continue: if (is_active) { temp_config->reloading = false; + container_map(&root_container, reset_gaps, NULL); + arrange_windows(&root_container, -1, -1); } config = temp_config; |