summary refs log tree commit diff
path: root/conf.c
diff options
context:
space:
mode:
authoroga <oga>2008-06-25 22:40:27 +0000
committeroga <oga>2008-06-25 22:40:27 +0000
commita6ec6cd9e98d9ef0cb4a03daabd108d4f844592d (patch)
treeec8973f6f6ae0a03408bf6cd78ed6665649cc4e0 /conf.c
parent05b17bf803f84fd7bc12c96a0eff32b515794253 (diff)
downloadcwm-a6ec6cd9e98d9ef0cb4a03daabd108d4f844592d.tar.gz
cwm-a6ec6cd9e98d9ef0cb4a03daabd108d4f844592d.tar.xz
cwm-a6ec6cd9e98d9ef0cb4a03daabd108d4f844592d.zip
Support mod4 (windows key) in mouse bindings too.
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/conf.c b/conf.c
index 3078321..b519090 100644
--- a/conf.c
+++ b/conf.c
@@ -434,6 +434,10 @@ conf_mousebind(struct conf *c, char *name, char *binding)
 	    strchr(name, 'S') < strchr(name, '-'))
 		current_binding->modmask |= ShiftMask;
 
+	if (strchr(name, '4') != NULL &&
+	    strchr(name, '4') < strchr(name, '-'))
+		current_binding->modmask |= Mod4Mask;
+
 	substring = strchr(name, '-') + 1;
 
 	if (strchr(name, '-') == NULL)