summaryrefslogtreecommitdiff
path: root/plugins/mouse/mouse.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-06-04 22:48:38 +0000
committerDana Jansens <danakj@orodu.net>2003-06-04 22:48:38 +0000
commita865fe603fb9843b2f7d7c4db259fd97dc3915b5 (patch)
tree1adefe47e0d1477ddddcc858a4392c3cf7736b21 /plugins/mouse/mouse.c
parentae0d84721d58731feee4888b67e7a1e55cd318b2 (diff)
remove that fancy new leftHanded option, it should be done via xmodmap instead
Diffstat (limited to 'plugins/mouse/mouse.c')
-rw-r--r--plugins/mouse/mouse.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/mouse/mouse.c b/plugins/mouse/mouse.c
index 1afc43e6..5bd76caa 100644
--- a/plugins/mouse/mouse.c
+++ b/plugins/mouse/mouse.c
@@ -13,7 +13,6 @@
static int threshold;
static int dclicktime;
-gboolean mouse_lefthand;
/*
<context name="Titlebar">
@@ -36,8 +35,6 @@ static void parse_xml(xmlDocPtr doc, xmlNodePtr node, void *d)
threshold = parse_int(doc, n);
if ((n = parse_find_node("doubleClickTime", node)))
dclicktime = parse_int(doc, n);
- if ((n = parse_find_node("leftHanded", node)))
- mouse_lefthand = parse_bool(doc, n);
n = parse_find_node("context", node);
while (n) {
@@ -101,7 +98,6 @@ void plugin_setup_config()
{
threshold = 3;
dclicktime = 200;
- mouse_lefthand = FALSE;
parse_register("mouse", parse_xml, NULL);
}