JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fixed stupid bug of snap-to-screen
authorarg@mig29 <unknown>
Mon, 30 Oct 2006 11:26:55 +0000 (12:26 +0100)
committerarg@mig29 <unknown>
Mon, 30 Oct 2006 11:26:55 +0000 (12:26 +0100)
event.c

diff --git a/event.c b/event.c
index 007dbbc..19db371 100644 (file)
--- a/event.c
+++ b/event.c
@@ -48,13 +48,13 @@ movemouse(Client *c) {
                        XSync(dpy, False);
                        c->x = ocx + (ev.xmotion.x - x1);
                        c->y = ocy + (ev.xmotion.y - y1);
-                       if(abs(c->x) < sx + SNAP)
+                       if(abs(c->x) < SNAP)
                                c->x = sx;
-                       else if(c->x + c->w > sx + sw - SNAP)
+                       else if(abs((sx + sw) - (c->x + c->w)) < SNAP)
                                c->x = sw - c->w - 2 * BORDERPX;
-                       if(abs(c->y) < sy + bh + SNAP)
+                       if(abs((sy + bh) - c->y) < SNAP)
                                c->y = sy + bh;
-                       else if(c->y + c->h > sy + sh - SNAP)
+                       else if(abs((sy + sh) - (c->y + c->h)) < SNAP)
                                c->y = sh - c->h - 2 * BORDERPX;
                        resize(c, False, TopLeft);
                        break;