aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-06-05 20:29:20 -0400
committerJesse Luehrs <doy@tozt.net>2016-06-05 20:29:20 -0400
commitaca4e1694eb769fa886a816ebf483e62924943d5 (patch)
tree590781bb159bb32d04f704ddbdab0d9ca6fbbbbe
parentb2bf2ed70615567e64caa9e5ca6b1f80d55982c7 (diff)
downloadrunes-aca4e1694eb769fa886a816ebf483e62924943d5.tar.gz
runes-aca4e1694eb769fa886a816ebf483e62924943d5.zip
allow configuring double click rate
-rw-r--r--src/config.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index acb9d15..31c4038 100644
--- a/src/config.c
+++ b/src/config.c
@@ -511,6 +511,9 @@ static void runes_config_set(RunesConfig *config, char *key, char *val)
else if (!strcmp(key, "redraw_rate")) {
config->redraw_rate = runes_config_parse_uint(val);
}
+ else if (!strcmp(key, "double_click_rate")) {
+ config->double_click_rate = runes_config_parse_uint(val);
+ }
else if (!strcmp(key, "command")) {
config->cmd = runes_config_parse_string(val);
}