aboutsummaryrefslogtreecommitdiffstats
path: root/event.c
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-10-30 12:26:55 +0100
committerarg@mig29 <unknown>2006-10-30 12:26:55 +0100
commit51c7589c8754dd171f218663d83957e1d9fe0429 (patch)
tree4aaff9096b7dade4385ac4762b4097515c08898b /event.c
parent99785382ae6d4b20e8baf33542059e466e0b3c7c (diff)
downloaddwm-51c7589c8754dd171f218663d83957e1d9fe0429.tar.zst
fixed stupid bug of snap-to-screen
Diffstat (limited to 'event.c')
-rw-r--r--event.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/event.c b/event.c
index 007dbbc..19db371 100644
--- 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;