about summary refs log tree commit diff
path: root/conf.c
diff options
context:
space:
mode:
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 1972287..3078321 100644
--- a/conf.c
+++ b/conf.c
@@ -430,6 +430,10 @@ conf_mousebind(struct conf *c, char *name, char *binding)
 	    strchr(name, 'M') < strchr(name, '-'))
 		current_binding->modmask |= Mod1Mask;
 
+	if (strchr(name, 'S') != NULL &&
+	    strchr(name, 'S') < strchr(name, '-'))
+		current_binding->modmask |= ShiftMask;
+
 	substring = strchr(name, '-') + 1;
 
 	if (strchr(name, '-') == NULL)