all repos — dwm @ dc1690ce0fac57ef4c8cd3f0e833cfa07411830f

my dwm build

removed useless abs() calls
arg@mig29 unknown
Mon, 30 Oct 2006 12:04:08 +0100
commit

dc1690ce0fac57ef4c8cd3f0e833cfa07411830f

parent

b6614261ea48c9711cefd79601e09fa764ee3075

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M event.cevent.c

@@ -52,9 +52,9 @@ if(abs(c->x) < sx + SNAP)

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;