summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/commands.c7
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) {
770 errno = 0; 770 errno = 0;
771 return cmd_results_new(CMD_INVALID, "gaps", "Number is out out of range."); 771 return cmd_results_new(CMD_INVALID, "gaps", "Number is out out of range.");
772 } 772 }
773 if (config->gaps_inner == 0) { 773 config->gaps_inner = config->gaps_outer = amount;
774 config->gaps_inner = amount;
775 }
776 if (config->gaps_outer == 0) {
777 config->gaps_outer = amount;
778 }
779 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 774 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
780 } 775 }
781 // gaps inner|outer n 776 // gaps inner|outer n