Partial screen_edge_strength

This commit is contained in:
ARDiDo 2021-10-23 11:25:37 -04:00 committed by Johan Malm
parent 0cf4579aa9
commit e1c8b3c641
3 changed files with 56 additions and 0 deletions

View file

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