From d22fb1a46a6c64469604fc88dc0e4cbc7f2a07c7 Mon Sep 17 00:00:00 2001 From: frosty Date: Wed, 4 Sep 2024 00:04:36 -0400 Subject: [PATCH] patch: refreshrate --- dwm.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/dwm.c b/dwm.c index 17a437d..a07e084 100644 --- a/dwm.c +++ b/dwm.c @@ -1196,7 +1196,6 @@ movemouse(const Arg *arg) Client *c; Monitor *m; XEvent ev; - Time lasttime = 0; if (!(c = selmon->sel)) return; @@ -1219,10 +1218,6 @@ movemouse(const Arg *arg) handler[ev.type](&ev); break; case MotionNotify: - if ((ev.xmotion.time - lasttime) <= (1000 / 60)) - continue; - lasttime = ev.xmotion.time; - nx = ocx + (ev.xmotion.x - x); ny = ocy + (ev.xmotion.y - y); if (abs(selmon->wx - nx) < snap) @@ -1404,7 +1399,6 @@ resizemouse(const Arg *arg) Client *c; Monitor *m; XEvent ev; - Time lasttime = 0; if (!(c = selmon->sel)) return; @@ -1426,10 +1420,6 @@ resizemouse(const Arg *arg) handler[ev.type](&ev); break; case MotionNotify: - if ((ev.xmotion.time - lasttime) <= (1000 / 60)) - continue; - lasttime = ev.xmotion.time; - nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1); nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1); if (c->mon->wx + nw >= selmon->wx && c->mon->wx + nw <= selmon->wx + selmon->ww