JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
removed useless abs() calls
authorarg@mig29 <unknown>
Mon, 30 Oct 2006 11:04:08 +0000 (12:04 +0100)
committerarg@mig29 <unknown>
Mon, 30 Oct 2006 11:04:08 +0000 (12:04 +0100)
event.c

diff --git a/event.c b/event.c
index d0f446f..f0e88d0 100644 (file)
--- a/event.c
+++ b/event.c
@@ -52,9 +52,9 @@ movemouse(Client *c) {
                                c->x = sx;
                        if(abs(c->y) < sy + bh + SNAP)
                                c->y = sy + bh;
-                       if(abs(c->x + c->w) > sx + sw - SNAP)
+                       if(c->x + c->w > sx + sw - SNAP)
                                c->x = sw - c->w - 2 * BORDERPX;
-                       if(abs(c->y + c->h) > sy + sh - SNAP)
+                       if(c->y + c->h > sy + sh - SNAP)
                                c->y = sh - c->h - 2 * BORDERPX;
                        resize(c, False, TopLeft);
                        break;