aboutsummaryrefslogtreecommitdiffstats
path: root/event.c
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-10-30 12:04:08 +0100
committerarg@mig29 <unknown>2006-10-30 12:04:08 +0100
commitdc1690ce0fac57ef4c8cd3f0e833cfa07411830f (patch)
tree1c458532f3e648957066149e31aa3b754831bb41 /event.c
parentb6614261ea48c9711cefd79601e09fa764ee3075 (diff)
downloaddwm-dc1690ce0fac57ef4c8cd3f0e833cfa07411830f.tar.zst
removed useless abs() calls
Diffstat (limited to 'event.c')
-rw-r--r--event.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/event.c b/event.c
index d0f446f..f0e88d0 100644
--- 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;