wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit 553a21620d66e1c857300859c5597749ccd6eafb
parent f2e1716ca116d58d7d07eba95f722fe114ce5aa9
Author: Kris Maglione <bsdaemon@wmii.de>
Date:   Mon,  5 Jun 2006 16:20:31 -0400

Fixed a < that should have been <=


Diffstat:
cmd/wm/mouse.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/wm/mouse.c b/cmd/wm/mouse.c @@ -143,7 +143,7 @@ snap_rect(XRectangle *rects, int num, XRectangle *current, ret = *mask; if(abs(dx) <= snap) ret ^= EAST|WEST; - if(abs(dy) < snap) + if(abs(dy) <= snap) ret ^= NORTH|SOUTH; return ret ^ CENTER; }