mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
config: fix key check for 'scrollback-indicator-style'
This commit is contained in:
parent
9edd71a741
commit
be7d0a5615
1 changed files with 1 additions and 1 deletions
2
config.c
2
config.c
|
|
@ -291,7 +291,7 @@ parse_section_main(const char *key, const char *value, struct config *conf,
|
|||
conf->scrollback.lines = lines;
|
||||
}
|
||||
|
||||
else if (strcmp(key, "scrollback-indicator") == 0) {
|
||||
else if (strcmp(key, "scrollback-indicator-style") == 0) {
|
||||
if (strcmp(value, "none") == 0)
|
||||
conf->scrollback.indicator.style = SCROLLBACK_INDICATOR_STYLE_NONE;
|
||||
else if (strcmp(value, "fixed") == 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue