all repos — openbox @ 555e3384ff652ece08b45c6a050688cd5a3231fe

openbox fork - make it a bit more like ryudo

oops read the mouse cnofig vars into the right place
Dana Jansens danakj@orodu.net
commit

555e3384ff652ece08b45c6a050688cd5a3231fe

parent

fdc52e879f11166186014ebb2bac7121edf08e79

1 files changed, 2 insertions(+), 4 deletions(-)

jump to
M openbox/config.copenbox/config.c

@@ -99,8 +99,6 @@ {

parse_key(doc, node->xmlChildrenNode, NULL); } -static int threshold; -static int dclicktime; /* <context name="Titlebar">

@@ -122,9 +120,9 @@

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) {