all repos — dwm @ 04b633ddf394fccf5a3125ea17239bad6997c8df

my dwm build

make sure that changing sx has no impact on snapping
arg@mig29 unknown
Tue, 31 Oct 2006 09:02:16 +0100
commit

04b633ddf394fccf5a3125ea17239bad6997c8df

parent

b76561a21258f69f7be946dc6a722843a4a42fab

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

jump to
M event.cevent.c

@@ -48,7 +48,7 @@ case MotionNotify:

XSync(dpy, False); c->x = ocx + (ev.xmotion.x - x1); c->y = ocy + (ev.xmotion.y - y1); - if(abs(c->x) < SNAP) + if(abs(sx + c->x) < SNAP) c->x = sx; else if(abs((sx + sw) - (c->x + c->w)) < SNAP) c->x = sw - c->w - 2 * BORDERPX;