Improve expandibility

This commit is contained in:
ARDiDo 2021-10-23 22:31:39 -04:00 committed by Johan Malm
parent e1c8b3c641
commit a24e17dea7
7 changed files with 67 additions and 57 deletions

View file

@ -323,7 +323,7 @@ entry(xmlNode *node, char *nodename, char *content)
} else if (!strcasecmp(nodename, "repeatDelay.keyboard")) {
rc.repeat_delay = atoi(content);
} else if (!strcasecmp(nodename, "screenEdgeStrength.core")) {
rc.strength = atoi(content);
rc.screen_edge_strength = atoi(content);
}
}
@ -419,7 +419,7 @@ rcxml_init()
rc.doubleclick_time = 500;
rc.repeat_rate = 25;
rc.repeat_delay = 600;
rc.strength = 0;
rc.screen_edge_strength = 0;
}
static struct {