wmii

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

commit 63f0541bf72d76400e6bee55b3fde059f52e3b2a
parent c65fdf160f64fda8f441a60836b9f661df01b709
Author: Kris Maglione <bsdaemon@wmii.de>
Date:   Wed, 31 May 2006 11:51:07 -0400

I really need sleep... same bugfix again


Diffstat:
cmd/wm/mouse.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmd/wm/mouse.c b/cmd/wm/mouse.c @@ -167,9 +167,9 @@ do_mouse_resize(Client *c, BlitzAlign align) if(align&SOUTH) oy += py; if(align&EAST) - ox += py; + ox += px; if(align&WEST) - ox -= py; + ox -= px; XWarpPointer(dpy, None, c->framewin, 0, 0, 0, 0, ox, oy); XTranslateCoordinates(dpy, c->framewin, root, ox, oy, &ox, &oy, &dummy);