diff --git a/mousefunc.c b/mousefunc.c index 3707f65..074f090 100644 --- a/mousefunc.c +++ b/mousefunc.c @@ -159,8 +159,8 @@ mousefunc_window_move(struct client_ctx *cc, void *arg) cc->geom.x = ev.xmotion.x_root - px - cc->bwidth; cc->geom.y = ev.xmotion.y_root - py - cc->bwidth; - /* don't sync more than 10 times / second */ - if ((ev.xmotion.time - time) > (1000 / 10)) { + /* don't sync more than 60 times / second */ + if ((ev.xmotion.time - time) > (1000 / 60)) { time = ev.xmotion.time; XSync(X_Dpy, False); client_move(cc);