diff options
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c index 52e14d8..8239a24 100644 --- a/src/config.c +++ b/src/config.c @@ -319,6 +319,8 @@ bool parse_option(struct tofi *tofi, const char *filename, size_t lineno, const free(config); free(tmp); } + } else if (strcasecmp(option, "bottom") == 0) { + tofi->anchor = ANCHOR_BOTTOM; } else if (strcasecmp(option, "anchor") == 0) { uint32_t val = parse_anchor(filename, lineno, value, &err); if (!err) { |