mirror of
https://github.com/labwc/labwc.git
synced 2025-11-03 09:01:51 -05:00
config/rcxml.c: Fix parsing of adaptiveSync setting
This commit is contained in:
parent
4b73eac41d
commit
79b1630724
1 changed files with 1 additions and 1 deletions
|
|
@ -352,7 +352,7 @@ entry(xmlNode *node, char *nodename, char *content)
|
|||
}
|
||||
} else if (!strcmp(nodename, "gap.core")) {
|
||||
rc.gap = atoi(content);
|
||||
} else if (!strcmp(nodename, "adaptiveSync.core")) {
|
||||
} else if (!strcasecmp(nodename, "adaptiveSync.core")) {
|
||||
rc.adaptive_sync = get_bool(content);
|
||||
} else if (!strcmp(nodename, "name.theme")) {
|
||||
rc.theme_name = strdup(content);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue