Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
Buildfix after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Airblader committed Jun 13, 2021
1 parent f9f29f1 commit 991824a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config_directives.c
Expand Up @@ -375,14 +375,14 @@ CFGFUN(smart_borders, const char *enable) {
if (!strcmp(enable, "no_gaps"))
config.smart_borders = SMART_BORDERS_NO_GAPS;
else
config.smart_borders = eval_boolstr(enable) ? SMART_BORDERS_ON : SMART_BORDERS_OFF;
config.smart_borders = boolstr(enable) ? SMART_BORDERS_ON : SMART_BORDERS_OFF;
}

CFGFUN(smart_gaps, const char *enable) {
if (!strcmp(enable, "inverse_outer"))
config.smart_gaps = SMART_GAPS_INVERSE_OUTER;
else
config.smart_gaps = eval_boolstr(enable) ? SMART_GAPS_ON : SMART_GAPS_OFF;
config.smart_gaps = boolstr(enable) ? SMART_GAPS_ON : SMART_GAPS_OFF;
}

CFGFUN(floating_minimum_size, const long width, const long height) {
Expand Down

0 comments on commit 991824a

Please sign in to comment.