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 8239a24..d45e62b 100644 --- a/src/config.c +++ b/src/config.c @@ -321,6 +321,8 @@ bool parse_option(struct tofi *tofi, const char *filename, size_t lineno, const } } else if (strcasecmp(option, "bottom") == 0) { tofi->anchor = ANCHOR_BOTTOM; + } else if (strcasecmp(option, "password") == 0) { + tofi->window.entry.hide_input = true; } else if (strcasecmp(option, "anchor") == 0) { uint32_t val = parse_anchor(filename, lineno, value, &err); if (!err) { |