Remove delay between mouse clicks

This commit is contained in:
SerpentSpirale
2021-10-22 23:19:04 +02:00
parent b6400a2cf3
commit 37202f21cd

View File

@@ -29,7 +29,7 @@ public class CallbackBridge {
@Override
public void run() {
putMouseEventWithCoords(button, true, x, y);
try { Thread.sleep(40); } catch (InterruptedException e) {}
//try { Thread.sleep(1); } catch (InterruptedException e) {}
putMouseEventWithCoords(button, false, x, y);
}
}