diff options
author | S. Christoffer Eliesen <christoffer@eliesen.no> | 2015-11-04 01:27:02 +0100 |
---|---|---|
committer | S. Christoffer Eliesen <christoffer@eliesen.no> | 2015-11-04 01:32:37 +0100 |
commit | 936f8c24e076189b8a70d4fcc4854f94346c18fe (patch) | |
tree | 8e7d84433af47673a3db899f1860a7020e900af0 | |
parent | 5c1e20b6ff0064f5ed948fc51ed029dd613f33db (diff) |
commands: gaps: Always apply default gaps config.
-rw-r--r-- | sway/commands.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sway/commands.c b/sway/commands.c index 7bfb71ba..9d4f74aa 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -770,12 +770,7 @@ static struct cmd_results *cmd_gaps(int argc, char **argv) { errno = 0; return cmd_results_new(CMD_INVALID, "gaps", "Number is out out of range."); } - if (config->gaps_inner == 0) { - config->gaps_inner = amount; - } - if (config->gaps_outer == 0) { - config->gaps_outer = amount; - } + config->gaps_inner = config->gaps_outer = amount; return cmd_results_new(CMD_SUCCESS, NULL, NULL); } // gaps inner|outer n |