pinosaur
/
dwm.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3da222
)
removed explicit warp in movemouse
author
Anselm R Garbe
<garbeam@gmail.com>
Sat, 14 Jun 2008 14:15:15 +0000
(15:15 +0100)
committer
Anselm R Garbe
<garbeam@gmail.com>
Sat, 14 Jun 2008 14:15:15 +0000
(15:15 +0100)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
5f6ffe3
..
c992860
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-980,11
+980,6
@@
movemouse(const Arg *arg) {
None, cursor[CurMove], CurrentTime) != GrabSuccess)
return;
XQueryPointer(dpy, root, &dummy, &dummy, &x1, &y1, &di, &di, &dui);
- if(x1 < c->x || x1 > c->x + c->w || y1 < c->y || y1 > c->y + c->h) {
- XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, 0, 0);
- x1 = c->x + 1;
- y1 = c->y + 1;
- }
for(;;) {
XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
switch (ev.type) {