dwm

dynamic window manager
git clone https://git.parazyd.org/dwm
Log | Files | Refs | README | LICENSE

commit dc1690ce0fac57ef4c8cd3f0e833cfa07411830f
parent b6614261ea48c9711cefd79601e09fa764ee3075
Author: arg@mig29 <unknown>
Date:   Mon, 30 Oct 2006 12:04:08 +0100

removed useless abs() calls
Diffstat:
Mevent.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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;