SavinaRoja / PyUserInput

A module for cross-platform control of the mouse and keyboard in python that is simple to install and use.
GNU General Public License v3.0
1.07k stars 244 forks source link

MouseEventListener windows causes massive mouse lag! #91

Open Gibbz opened 8 years ago

Gibbz commented 8 years ago

I have been developing a basic test project and it works fine on linux. However on windows the mouse event listener causes massive mouse lag! I'm using windows 10 x64. I have tried a fresh install with the same issue.

imports

import time import sys import thread_timer from pymouse import PyMouse from pykeyboard import PyKeyboard from pymouse import PyMouseEvent from pykeyboard import PyKeyboardEvent

class MouseEventListener(PyMouseEvent): def click(self, x, y, button, press):

M = MouseEventListener() M.start()

DanMossa commented 7 years ago

I am also experiencing this