diff options
| author | [email protected] <unknown> | 2006-08-01 14:46:01 +0200 |
|---|---|---|
| committer | [email protected] <unknown> | 2006-08-01 14:46:01 +0200 |
| commit | 77f8c075c48e510e064b8f0b7b823a7e1f9f44b7 (patch) | |
| tree | fb47710d61c0ecd97ec622aab8d3d9cdcd627260 /client.c | |
| parent | fixed config.h files (diff) | |
| download | seiwm-77f8c075c48e510e064b8f0b7b823a7e1f9f44b7.tar.xz seiwm-77f8c075c48e510e064b8f0b7b823a7e1f9f44b7.zip | |
uppercasing all define'd values (uppercase-prefixed should only be enum field qualifiers)
Diffstat (limited to 'client.c')
| -rw-r--r-- | client.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -244,11 +244,11 @@ manage(Window w, XWindowAttributes *wa) c->next = clients; clients = c; - XGrabButton(dpy, Button1, MODKEY, c->win, False, ButtonMask, + XGrabButton(dpy, Button1, MODKEY, c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None); - XGrabButton(dpy, Button2, MODKEY, c->win, False, ButtonMask, + XGrabButton(dpy, Button2, MODKEY, c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None); - XGrabButton(dpy, Button3, MODKEY, c->win, False, ButtonMask, + XGrabButton(dpy, Button3, MODKEY, c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None); if(!c->isfloat) |