fixed several things, nearly feature complete

This commit is contained in:
Anselm R. Garbe
2006-07-13 20:28:19 +02:00
parent 3aad92202d
commit 7fe717c29f
5 changed files with 35 additions and 29 deletions

4
dev.c
View File

@ -104,7 +104,7 @@ mresize(Client *c)
c->h = abs(ocy - ev.xmotion.y);
c->x = (ocx <= ev.xmotion.x) ? ocx : ocx - c->w;
c->y = (ocy <= ev.xmotion.y) ? ocy : ocy - c->h;
resize(c);
resize(c, True);
break;
case ButtonRelease:
XUngrabPointer(dpy, CurrentTime);
@ -138,7 +138,7 @@ mmove(Client *c)
XFlush(dpy);
c->x = ocx + (ev.xmotion.x - x1);
c->y = ocy + (ev.xmotion.y - y1);
resize(c);
resize(c, False);
break;
case ButtonRelease:
XUngrabPointer(dpy, CurrentTime);