mirror of
https://github.com/labwc/labwc.git
synced 2026-02-08 10:06:59 -05:00
config/rcxml.c: Fix parsing of adaptiveSync setting
Backport of 79b1630724
This commit is contained in:
parent
bea35f1969
commit
519d97a897
1 changed files with 1 additions and 1 deletions
|
|
@ -350,7 +350,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