From eeec0fda8a856d67b7ddf4432a504589989e20e2 Mon Sep 17 00:00:00 2001 From: "S. Christoffer Eliesen" Date: Wed, 4 Nov 2015 01:27:24 +0100 Subject: commands: gaps: Re-arrange windows after changing default gaps. --- sway/commands.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sway') diff --git a/sway/commands.c b/sway/commands.c index 9d4f74aa..19b8e1a9 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -771,6 +771,7 @@ static struct cmd_results *cmd_gaps(int argc, char **argv) { return cmd_results_new(CMD_INVALID, "gaps", "Number is out out of range."); } config->gaps_inner = config->gaps_outer = amount; + arrange_windows(&root_container, -1, -1); return cmd_results_new(CMD_SUCCESS, NULL, NULL); } // gaps inner|outer n @@ -786,6 +787,7 @@ static struct cmd_results *cmd_gaps(int argc, char **argv) { } else if (strcasecmp(target_str, "outer") == 0) { config->gaps_outer = amount; } + arrange_windows(&root_container, -1, -1); return cmd_results_new(CMD_SUCCESS, NULL, NULL); } // gaps inner|outer current|all set|plus|minus n -- cgit v1.2.3-54-g00ecf