From: Dana Jansens Date: Tue, 12 Aug 2003 18:08:34 +0000 (+0000) Subject: oops read the mouse cnofig vars into the right place X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=555e3384ff652ece08b45c6a050688cd5a3231fe;p=chaz%2Fopenbox oops read the mouse cnofig vars into the right place --- diff --git a/openbox/config.c b/openbox/config.c index 19b66403..b7241f59 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -99,8 +99,6 @@ static void parse_keyboard(xmlDocPtr doc, xmlNodePtr node, void *d) parse_key(doc, node->xmlChildrenNode, NULL); } -static int threshold; -static int dclicktime; /* @@ -122,9 +120,9 @@ static void parse_mouse(xmlDocPtr doc, xmlNodePtr node, void *d) node = node->xmlChildrenNode; if ((n = parse_find_node("dragThreshold", node))) - threshold = parse_int(doc, n); + config_mouse_threshold = parse_int(doc, n); if ((n = parse_find_node("doubleClickTime", node))) - dclicktime = parse_int(doc, n); + config_mouse_dclicktime = parse_int(doc, n); n = parse_find_node("context", node); while (n) {