about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-07-19 16:38:39 +0200
committerarg@10ksloc.org <unknown>2006-07-19 16:38:39 +0200
commitf95eed34b46dfe73f1511703e0a9301c9d8d1952 (patch)
tree0f8278d77c685ab9480bab2e3a224076397f6f47 /client.c
parent1eaffa372f6c4186c3c1717113e3f575cf64fcfd (diff)
downloaddwm-f95eed34b46dfe73f1511703e0a9301c9d8d1952.tar.gz
applied Jukka's patch with s/ModKeyMask/MODKEY/g
Diffstat (limited to 'client.c')
-rw-r--r--client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/client.c b/client.c
index 3b6a0e1..ccd8100 100644
--- a/client.c
+++ b/client.c
@@ -239,11 +239,11 @@ manage(Window w, XWindowAttributes *wa)
 
 	XGrabButton(dpy, Button1, ControlMask, c->win, False, ButtonPressMask,
 			GrabModeAsync, GrabModeSync, None, None);
-	XGrabButton(dpy, Button1, Mod1Mask, c->win, False, ButtonPressMask,
+	XGrabButton(dpy, Button1, MODKEY, c->win, False, ButtonPressMask,
 			GrabModeAsync, GrabModeSync, None, None);
-	XGrabButton(dpy, Button2, Mod1Mask, c->win, False, ButtonPressMask,
+	XGrabButton(dpy, Button2, MODKEY, c->win, False, ButtonPressMask,
 			GrabModeAsync, GrabModeSync, None, None);
-	XGrabButton(dpy, Button3, Mod1Mask, c->win, False, ButtonPressMask,
+	XGrabButton(dpy, Button3, MODKEY, c->win, False, ButtonPressMask,
 			GrabModeAsync, GrabModeSync, None, None);
 
 	if(!c->isfloat)
b'>20f94973 ^
ea87d005 ^
20f94973 ^







ea87d005 ^
20f94973 ^








0128bee7 ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87