remove left over XSync; ok oga@

This commit is contained in:
okan 2011-05-13 12:53:19 +00:00
parent c8cd94882d
commit fa64bc2f32

View File

@ -116,10 +116,8 @@ mousefunc_window_resize(struct client_ctx *cc, void *arg)
} }
break; break;
case ButtonRelease: case ButtonRelease:
if (time) { if (time)
XSync(X_Dpy, False);
client_resize(cc); client_resize(cc);
}
XUnmapWindow(X_Dpy, sc->menuwin); XUnmapWindow(X_Dpy, sc->menuwin);
XReparentWindow(X_Dpy, sc->menuwin, sc->rootwin, 0, 0); XReparentWindow(X_Dpy, sc->menuwin, sc->rootwin, 0, 0);
xu_ptr_ungrab(); xu_ptr_ungrab();
@ -171,10 +169,8 @@ mousefunc_window_move(struct client_ctx *cc, void *arg)
} }
break; break;
case ButtonRelease: case ButtonRelease:
if (time) { if (time)
XSync(X_Dpy, False);
client_move(cc); client_move(cc);
}
xu_ptr_ungrab(); xu_ptr_ungrab();
return; return;
} }