1
0
Fork 1
mirror of https://git.suckless.org/dwm synced 2025-03-25 16:13:14 -07:00

added pointer warp on drop in resize

This commit is contained in:
Anselm R. Garbe 2007-02-12 10:19:52 +01:00
parent fd995dac78
commit 7055315725

View file

@ -82,6 +82,8 @@ resizemouse(Client *c) {
switch(ev.type) {
case ButtonRelease:
resize(c, True);
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0,
c->w + c->border - 1, c->h + c->border - 1);
XUngrabPointer(dpy, CurrentTime);
return;
case ConfigureRequest: